- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Git/git rm/git addの取消し(ファイルを管理対象外にする) へ行く。
- 1 (2020-09-01 (火) 07:21:22)
- 2 (2020-09-01 (火) 07:23:43)
git addの取消し
ここでのgit addの取消しとは?
- git addしてステージしたファイルをINDEXから削除する
- その際、ファイル自体はワーキングディレクトリから削除しない
手順
> git add 1.txt # (1) > git status ## master A 1.txt > git rm --cached 1.txt # (2) rm '1.txt' > git status # (3) ## master ?? 1.txt
- (1) 1.txtをgit addする
- (2) git rm --cachedでそのgit addを取り消す
- (3) INDEXから削除されたが、ファイル自体は存在している