GIT忽略本地已存在文件的修改

1、将文件修改忽略

git update-index --assume-unchanged FILENAME

2、取消文件忽略

git update-index --no-assume-unchanged FILENAME


如果文件未上传到库中,并为提交到本地版本库中记录,最好使用:

.gitignore


你可能感兴趣的:(GIT忽略本地已存在文件的修改)