git for windowsの初期設定
インストールされている「Git Bash」を使います。
名前とメールアドレスの設定
$ git config --global user.name "Firstname Lastname"
$ git config --global user.email "your_email@example.com"
コマンド出力を読みやすくする
$ git config --global color.ui auto
設定が反映されたか確認
$ cat ./gitconfig
[user]
name = Firstname Lastname
email = your_email@example.com
[color]
ui = auto
[core]
autocrlf = true
excludesfile = C:\\Users\\username\\Documents\\gitignore_global.txt
quotepath = false
[gui]
[gui]