在我的git倉庫中,我在將它移動到另一個文件夾後手動刪除了一個文件(rm
)。我不是犯下的所有更改我的回購,但現在當我做git status .
Git:如何提交手動刪除的文件?
[email protected]:/home/github/Vimfiles/Vim$ git status .
# On branch master
# Changes not staged for commit:
# (use "git add/rm <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# deleted: plugin/dwm.vim
#
no changes added to commit (use "git add" and/or "git commit -a")
現在,我應該怎麼犯,使dwm.vim
從插件文件夾在我的遠程回購刪除。我知道我必須使用git add && git commit
,但我沒有提交/添加的文件,因爲/plugin/dwm.vim
已被刪除。
你可以使用git add -u – Knase