我刚刚做了以下操作,以便在我的localhost和我的生产环境中保留config.php文件的不同副本:
$ git update-index --assume-unchanged application/config/config.php
不幸的是,我没有完全按照自己的意愿编写config.php文件,我需要对此进行反转,以便我可以进行更改,提交,然后重新忽略该文件。
如何撤消git update-index
命令?
答案 0 :(得分:33)
git update-index --no-assume-unchanged application/config/config.php
注意--no
前缀,风格上是双重否定。