git クイックリファレンス
git checkout -b «ブランチ名» refs/tags/«タグ名»
git checkout «ブランチ名»
必要ならmasterブランチに切り替えてから実行する git checkout master
git pull
git diff «比較元ブランチ名» «比較先ブランチ名» [ファイル名 | ディレクトリ名]
管理対象外のファイルをすべて表示する
git ls-files --others
管理対象外のファイルを.gitignoreの無視ファイルを反映して表示する
git ls-files --others --exclude-standard