忽略对作为git存储库一部分的文件的更改

时间:2015-01-16 10:46:13

标签: git

我必须对我的git repo中的文件进行本地修改,但是我不提交该文件,或者丢失我的修改。我不希望每次都有git add -p。 我将文件添加到我的gitignore但这不起作用。

1 个答案:

答案 0 :(得分:2)

你可以做到

git update-index --assume-unchanged [the path to your file]

您可以通过调用

随时撤消操作
git update-index --no-assume-unchanged [the path to your file]