2018/4/4に実施。
1.ダウンロード。
https://git-scm.com/download/win
2.インストーラを起動。(規約を読んで)「Next」をクリック。
7.「Use Git from Git Bash only」に変更して「Next」をクリック。
※「Use Git from Git Bash only」= GitBashからしかGitコマンドを使わない。
「Use Git from the Windows Command Prompt」= コマンドプロンプトでもGitコマンドを使いたい。
12.GitBashを起動。↓のコマンドでコミット履歴に表示されるName、Emailを登録。
git config --global user.name 'Name'
git config --global user.email 'Email'
13.↓のコマンドで日本語のファイル名を表示できるようにする。
git config --global core.quotepath false
終わり。