git 忽略上传指定文件 命令
2021-01-29 15:15
标签: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 git 忽略上传指定文件 命令 标签:int enc ref blog class das upd 忽略 文件路径 原文地址:https://www.cnblogs.com/zonglonglong/p/13202056.html
提取文件路径,方法如下
所有被忽略的文件,取消忽略的方法,如下
上一篇:JQuery之事件