- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Git/git reset/ステージングを取り消す(INDEXを戻す) へ行く。
ステージング(add)の取り消し
vi test.txt # (1) test.txtを修正する。 git add test.txt # (2) test.txtをステージングする。 git reset HEAD test.txt # (3) 上のステージングを取り消す。 # test.txtは修正されたまま。
vi test.txt # (1) test.txtを修正する。 git add test.txt # (2) test.txtをステージングする。 git reset HEAD test.txt # (3) 上のステージングを取り消す。 # test.txtは修正されたまま。