git假裝檔案沒更新

方健發表於2014-10-24
  • 參考: https://help.github.com/articles/ignoring-files/

對於配置檔案,比如log4j.properties,經常在除錯時改來改去,不希望這些改動一不小心提交了。可以讓git假裝檔案沒更新:
git update-index --assume-unchanged log4j.properties
取消假裝:
git update-index --no-assume-unchanged log4j.properties

相關文章