GIT找出update-index --assume-unchanged关闭跟踪的文件

Posted lovelyli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT找出update-index --assume-unchanged关闭跟踪的文件相关的知识,希望对你有一定的参考价值。

  上次学会使用update-index --assume-unchanged后,大量用update-index --assume-unchanged来忽略文件,等到项目结束要提交代码时才疯了,哪些文件被我忽略了?由于之前没有做记录,忽略的文件完全没有印象,只好想办法啦,目前只找到下面这个方法:

git ls-files -v | grep ‘^h‘

  可以将所有被update-index --assume-unchanged关闭了跟踪的文件。

  但文件太多了,不想手工一条一条敲,只好先将路径提取出来再与命令拼装,如下:

git ls-files -v|grep ‘^h‘ |awk ‘{print $2}‘ |xargs git update-index --no-assume-unchanged

 

以上是关于GIT找出update-index --assume-unchanged关闭跟踪的文件的主要内容,如果未能解决你的问题,请参考以下文章

git update-index --assume-unchanged忽略跟踪

git update-index --assume-unchanged

自动将“git update-index --chmod=+x”应用于可执行文件

`git update-index --skip-worktree`之后`你对以下文件的本地更改将被checkout覆盖`

取消git忽略文件

git 忽略上传指定文件 命令