リポジトリのmasterで置き換える note
git reset --hard origin/master
1コミット=1行でログを表示 note
git log --oneline
タグをチェックアウトする note
git checkout -b tagname refs/tags/tagname
コミット直後にコメントを修正する note
git commit --amend
1ファイルだけ別ブランチからチェックアウトする note
git checkout <ブランチ名> -- <ファイルpath>
ディレクトリごと別ブランチからチェックアウトする note
git checkout <ブランチ名> <ディレクトリpath>