我正在开发一个带有git存储库的大型项目。这很挑剔,所以每当我推出一些东西时,它会抱怨白色空间和标签。但是这一次,在我手动确保我上传的文件没有标签后,git commit之后的消息没有改变
git commit
sth/sth-else.hh:81: space before tab in indent.
我是否需要以某种方式刷新git以注意文件已更改?
答案 0 :(得分:2)
您需要通过git add
或git commit -a
重新启动这些文件(但我不会因其他原因推荐后者)。
编辑:发现它\ o / that answer的第一段解释了为什么git commit -a
不是最佳选择:)