カテゴリー:
GitHub
閲覧数:368 配信日:2019-06-22 10:54
$ pwd
$ pwd
/L/1_Hp/0_sakura/2018server/var/Www/html/1-p46
$ git remote
リモートリポジトリの設定内容を一覧表示(オプションなし)
$ git remote
origin
リモートリポジトリの設定内容を一覧表示(URLも表示)
$ git remote -v
origin git@github.com:GitHubユーザー名/GitHubリポジトリ名.git (fetch)
origin git@github.com:GitHubユーザー名/GitHubリポジトリ名.git (push)
$ git remote get-url origin
git@github.com:GitHubユーザー名/GitHubリポジトリ名.git
$ git config
config情報を表示する
$ git config --list
core.symlinks=false
core.autocrlf=false
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
rebase.autosquash=true
http.sslcainfo=L:/9.soft/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslbackend=openssl
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
credential.helper=manager
core.longpaths=true
user.name=e1blue
user.email=GitHubメールアドレス
core.autocrlf=false
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
remote.origin.url=git@github.com:GitHubユーザー名/GitHubリポジトリ名.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
$ git config remote.origin.url
$ git config remote.origin.url
git@github.com:GitHubユーザー名/GitHubリポジトリ名.git
git remote get-url origin と git config remote.origin.url について