Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对一些已经存在的文件进行了一些更改。然后我在其中添加了一个新文件
git add newfilename
我还没有提交,现在我想删除这个新文件。我无法进行重置,因为它也会重置我不想要的所有其他文件更改。
我尝试git checkout newfilename了通常的猜测delete,rm但也没有帮助。
git checkout newfilename
delete
rm
git reset newfilename将从索引中删除它,然后您可以照常删除它。
git reset newfilename
试一试
git rm --cached newfilename
至少将其从索引中删除。
您可以使用以下命令从分支中删除文件:
$git rm file_name