我需要删除工作区中的octofamily/dos.gif
和octofamily/one.txt
文件。我该怎么做?我正在使用git 1.9。
On branch master
Changes to be committed:
use "git reset HEAD <file>..." to unstage)
new file: blue_octocat.txt
new file: octofamily/baby_octocat.txt
new file: octofamily/momma_octocat
new file: red_octocat.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
octofamily/dos.gif
octofamily/uno.txt
这不起作用。
git checkout -- octofamily/dos.gif
答案 0 :(得分:0)
如果文件未跟踪,您可以删除它们。
rm octofamily/dos.gif
rm octofamily/uno.txt
请注意,由于Git没有跟踪它们,它们将永远消失。