如何添加提交更改?

时间:2016-09-28 14:22:55

标签: git

我已从目录中删除了4个巨大的文件,并使用

git commit -m“添加了b” 试图修改我原来的提交。 但是

{{1}}

如何进行更改?

1 个答案:

答案 0 :(得分:1)

据推测,您只删除了沙箱中的文件。在提交之前,您需要从索引中删除它们:

git rm hugefile.1 hugefile.2 hugefile.3 hugefile.4
git commit -m "removed four huge files"