饭叔的知识整理

git假装文件没更新

对于配置文件,比如log4j.properties,经常在调试时改来改去,不希望这些改动一不小心提交了。可以让git假装文件没更新:
git update-index --assume-unchanged log4j.properties
取消假装:
git update-index --no-assume-unchanged log4j.properties