git 忽略本地修改,不将修改提交到远程

本地项目的配置文件自己修改了不想提交到仓库,每次都要rollback非常不方便。可以试下这个方法:

忽略:

git update-index --assume-unchanged ./sd-schedule/src/main/resources/properties/redis.properties

那么这个redis.properties就会被忽略,提交时检测不到修改:


image.png

恢复:

$ git update-index --no-assume-unchanged ./sd-schedule/src/main/resources/properties/redis.properties

执行后就能正常提交修改了


image.png

你可能感兴趣的:(git 忽略本地修改,不将修改提交到远程)