Git的一些实用操作

Ref:http://stackoverflow.com/questions/17195861/undo-git-update-index-assume-unchanged-file

1. 添加本地忽略的文件(隐藏)

git update-index --assume-unchanged <file>

2. 移除本地忽略的文件(显示)

git update-index --no-assume-unchanged <file>

原文地址:https://www.cnblogs.com/jinglecode/p/5464636.html