- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Git/git reset/ファイルの修正を取り消す へ行く。
- 1 (2017-08-18 (金) 16:36:53)
修正したがステージングしてないファイルを戻す
修正したファイルを元のファイルに戻す
vi test.txt # (1) test.txtを修正する。 git checkout test.txt # (2) (1)の修正を戻す。
修正したワーキングツリーを元の状態(HEAD)のワーキングツリーに戻す
vi test1.txt # (1) test1.txt,test2.txtを修正する。 vi test2,txt git reset --hard HEAD # (2) (1)の修正を戻す。