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.
我只是做了以下操作来在我的本地主机和我的生产环境中保留我的 config.php 文件的不同副本:
$ git update-index --assume-unchanged application/config/config.php
不幸的是,我没有完全按照我应该的方式编写 config.php 文件,我需要将其反转,以便我可以进行更改、提交它,然后重新忽略该文件。
如何撤消git update-index命令?
git update-index
git update-index --no-assume-unchanged application/config/config.php
注意--no前缀,风格上是双重否定。
--no