我提交后如何让git不显示已删除的文件列表

时间:2015-03-14 22:03:46

标签: git github

[master + 0~0 -1]>这就是我的git repo在我评论之后的样子。 +0~0 -1都是红色。

Q红色是什么+ 0~0 -1是什么意思? 问:如果这表示删除了文件,我该怎么删除它,因为我已经编写了我的更改,即我希望我的存储库看起来像[master]

使用git status我得到了这个结果

On branch master 
Your branch is up-to-date with 'origin/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: ClickForHelp/bin/classes/com/example/clickforhelp/controllers/MainActivity$GetLo‌​cationsAsyncTask.class 
no changes added to commit (use "git add" and/or "git commit -a")

1 个答案:

答案 0 :(得分:1)

那么,这可能是-1行或其他东西,但要掌握,无论你在哪里,你都可以使用

git reset --hard master

请确保你没有任何你不介意失去的东西。