我必须对我的git repo中的文件进行本地修改,但是我不提交该文件,或者丢失我的修改。我不希望每次都有git add -p。 我将文件添加到我的gitignore但这不起作用。
答案 0 :(得分:2)
你可以做到
git update-index --assume-unchanged [the path to your file]
您可以通过调用
随时撤消操作git update-index --no-assume-unchanged [the path to your file]