由于代码中有 config 文件,本地开发的时候,会将 config 改成开发环境的配置。 如果 git add * 的话会把这个 config 也提交上去,一个个选择文件又太麻烦,有没有办法在本地修改的 config 不让他提交?
git add *
认证0级讲师
Modify.git/info/excludethis file
.git/info/exclude
.gitignore
You can try to use git update-index --assume-unchanged FILENAME to ignore the config file
git update-index --assume-unchanged FILENAME
Modify
.git/info/exclude
this file.gitignore
You can try to use
git update-index --assume-unchanged FILENAME
to ignore the config file