カテゴリー:
GitHub
閲覧数:367 配信日:2019-06-21 10:58
インストール確認
デスクトップの「Git Bash」ショートカットをダブルクリック
リンク先
L:\9.soft\Git\git-bash.exe --cd-to-home
インストールされているGitバージョンを確認する
$ git --version
git version 2.22.0.windows.1
user@DESKTOP-xxxx MINGW64 ~
Gitの初期設定
Gitをインストールしたときに最初にすべきこと
・ユーザー名とEmailアドレスを設定する
・誰が変更したかの記録を残すために、最初にユーザー名とメールアドレスを登録しておく必要がある
・全てのGitのコミットはこの情報を用いる。作成するコミットに永続的に焼き付けられる
GitHubユーザー名
$ git config --global user.name 'GitHubユーザー名'
GitHubメールアドレス
$ git config --global user.email 'GitHubメールアドレス'
設定の確認
全ての設定を一覧表示するコマンドを実行
$ 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
user.name=e1blue
user.email=GitHubメールアドレス
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
設定していないとどうなるの?
$ git commit -m "first commit"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'user@DESKTOP-5SHVLVQ.(none)')
最初のGitの構成