~/.gitconfig
.DS_store
とか
git config --global core.editor 'vim -c "set fenc=utf-8"'
ファイルモード変更を無視
git config core.filemode false
.gitmodulesに以下を追加
git config -f .gitmodules submodule.<name>.shallow true
https://stackoverflow.com/questions/30129920/git-submodule-without-extra-weight
githubからforkしてる場合などで、別サイトのデータでrebaseしたい場合
git pull --rebase /path/to/other
リモートに有るtagを拾ってくる場合
git pull --tags