消除工作区域的变化(git)

时间:2014-05-02 21:54:51

标签: git

我需要删除工作区中的octofamily/dos.gifoctofamily/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

1 个答案:

答案 0 :(得分:0)

如果文件未跟踪,您可以删除它们。

rm octofamily/dos.gif
rm octofamily/uno.txt

请注意,由于Git没有跟踪它们,它们将永远消失。