26

我只是做了以下操作来在我的本地主机和我的生产环境中保留我的 config.php 文件的不同副本:

$ git update-index --assume-unchanged application/config/config.php

不幸的是,我没有完全按照我应该的方式编写 config.php 文件,我需要将其反转,以便我可以进行更改、提交它,然后重新忽略该文件。

如何撤消git update-index命令?

4

1 回答 1

38
git update-index --no-assume-unchanged application/config/config.php

注意--no前缀,风格上是双重否定。

于 2012-09-18T16:53:53.070 回答