Іноді git пропонує git rm --cached
зняти файл, іноді git reset HEAD file
. Коли я повинен використовувати який?
Редагувати:
D:\code\gt2>git init
Initialized empty Git repository in D:/code/gt2/.git/
D:\code\gt2>touch a
D:\code\gt2>git status
# On branch master
#
# Initial commit
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# a
nothing added to commit but untracked files present (use "git add" to track)
D:\code\gt2>git add a
D:\code\gt2>git status
# On branch master
#
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
#
# new file: a
#
D:\code\gt2>git commit -m a
[master (root-commit) c271e05] a
0 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 a
D:\code\gt2>touch b
D:\code\gt2>git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# b
nothing added to commit but untracked files present (use "git add" to track)
D:\code\gt2>git add b
D:\code\gt2>git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: b
#
rm
це скасовувати add
? Як ви думаєте, як rm
слід поводитися?
git init
запиту не HEAD
потрібно скидати.
rm
передбачає видалення в контексті unix. Це не протилежне додавання до індексу. Функція для видалення файлів не повинна перевантажуватися функціями для зміни стану інсценізації. Якщо є деталі реалізації, які дозволяють зручно поєднувати, це просто вказує на відсутність продуманого шару абстрагування в git, який би зрозумів зручність використання.
git rm
може як етап видалення , а також прибрати з буфера в додаток )