How to do it
- .git/info/excludeファイルに以下の1行追加
root/to/path.ext
- インデックスをアップデート
git update-index --assume-unchanged <file>
- 確認
git ls-files -v
以下の表示になればOKです
h root/to/path.ext
How to undo it
-
.git/info/excludeファイルに以下の1行を削除
root/to/path.ext
-
インデックスをアップデート
git update-index --no-assume-unchanged <file>
-
確認
git ls-files -v
何も出なければOK
以上