git管理下でも明示的に変更なし(無視)とする
-
ファイル指定はフルパスでやる必要がある(
./hoge
みたいのは不可)git update-index —assume-unchanged returns “fatal unable to mark file” - Stack Overflow
git - Your local changes to the following files would be overwritten by merge - Stack Overflow
git update-index --assume-unchanged $target.file
状態変更を反映させる
git checkout -- <file>
戻す
git update-index --no-assume-unchanged <file>
- ↓みたいので出たパスで指定する(リポジトリルートからのパスのよう)
ignore との違い
git管理下にあるデモの認証ファイルみたいな弄って使う系とか