标签:int enc ref blog class das upd 忽略 文件路径
感谢
https://blog.csdn.net/Wenco1/article/details/88664246
https://blog.csdn.net/DaSunWarman/article/details/79384307
忽略
$ git update-index --assume-unchanged /path/to/file
取消忽略
$ git update-index --no-assume-unchanged /path/to/file
忽略的文件多了,想找出所有被忽略的文件,暂时找到下面的办法,
git ls-files -v | grep ‘^h\ ‘
提取文件路径,方法如下
git ls-files -v | grep ‘^h\ ‘ | awk ‘{print $2}‘
所有被忽略的文件,取消忽略的方法,如下
git ls-files -v | grep ‘^h‘ | awk ‘{print $2}‘ |xargs git update-index --no-assume-unchanged
标签:int enc ref blog class das upd 忽略 文件路径
原文地址:https://www.cnblogs.com/zonglonglong/p/13202056.html