我已经运行了以下命令来忽略监视/跟踪特定的目录/文件:
git update-index --assume-unchanged <file>
我如何撤销这一点,以便<文件>再次被监视/跟踪?
我已经运行了以下命令来忽略监视/跟踪特定的目录/文件:
git update-index --assume-unchanged <file>
我如何撤销这一点,以便<文件>再次被监视/跟踪?
当前回答
这里没有不包括的。但我想补充我的意见。有时,我运行一个构建,它改变了很多文件,然后我想做一些事情,所以这个命令真的帮助了我很多。
Git update-index——假设-unchanged ' Git状态| grep modified | sed 's|modified:||g'| xargs '
希望其他人也能觉得它有用。
其他回答
这里没有不包括的。但我想补充我的意见。有时,我运行一个构建,它改变了很多文件,然后我想做一些事情,所以这个命令真的帮助了我很多。
Git update-index——假设-unchanged ' Git状态| grep modified | sed 's|modified:||g'| xargs '
希望其他人也能觉得它有用。
在Windows中没有一个解决方案对我有效-它似乎使用大写H而不是H来表示文件状态,grep命令需要一个额外的插入符号,因为^也表示行开始以及否定下一个字符。
Windows的解决方案
Open Git Bash and change to the relevant top level directory. git ls-files -v | grep '^^H' to list all the uncached files git ls-files -v | grep '^^H' | cut -c 3- | tr '\012' '\000' | xargs -0 git update-index --no-skip-worktree to undo the files skipping of all files that was done via update-index --skip-worktree git ls-files -v | grep '^^H]' | cut -c 3- | tr '\012' '\000' | xargs -0 git update-index --no-assume-unchanged to undo the files skipping of all files that was done via update-index --assume-unchanged git ls-files -v | grep '^^H' to again list all the uncached files and check whether the above commands have worked - this should now not return anything
要撤消/显示设置为assume-unchanged的dir's/files,执行以下命令:
git update-index --no-assume-unchanged <file>
要获得一个目录下的未修改的文件列表,运行以下命令:
git ls-files -v|grep '^h'
Git update-index函数有几个选项,你可以输入如下:
git update-index --help
在这里你会发现各种选项-如何处理函数update-index。
[如果你不知道文件名]
git update-index --really-refresh
[如果你知道文件名]
git update-index --no-assume-unchanged <file>
将恢复所有已添加到忽略列表中的文件。
git update-index --assume-unchanged <file>
如果你想撤销应用的所有文件,假设没有任何状态,而不仅仅是缓存(git用小写字符标记它们),你可以使用以下命令:
git ls-files -v | grep '^[a-z]' | cut -c 3- | tr '\012' '\000' | xargs -0 git update-index --no-assume-unchanged
Git ls-files -v将打印所有文件及其状态 Grep '^[a-z]'将过滤文件并只选择假定不变的文件 Cut -c 3-将删除状态,只留下路径,从第3个字符切割到结束 Tr '\012' '\000' '将行尾字符(\012)替换为零字符(\000) Xargs -0 git update-index——no-assume-unchanged将所有由零字符分隔的路径传递给git update-index——no-assume-unchanged来撤销