git global初期設定
$ git config --global user.name "<名前>"
$ git config --global user.email <メールアドレス>
$ git config --global core.autocrlf false
$ git config --global core.quotepath false
$ git config --global gui.encoding utf-8
$ mkdir -p ~/.config/git
$ cat <<EOF >~/.config/git/
>*~
>EOF
#初期設定確認
$ cat ~/.gitconfig
[user]
name = your name
email = your-mail-address
[core]
autocrlf = false
quotepath = false
[gui]
encoding = utf-8