我已经运行了以下命令来忽略监视/跟踪特定的目录/文件:

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

我如何撤销这一点,以便<文件>再次被监视/跟踪?


当前回答

在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

其他回答

为了综合来自@adardesign, @adswebwork和@AnkitVishwakarma的优秀原始答案,以及来自@Bdoserror, @Retsam, @seanf和@torek的评论,以及额外的文档链接和简洁的别名……

基本命令

将一个假设不变的文件重置为正常状态。

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

列出所有假设不变的文件:

git ls-files -v | grep '^[a-z]' | cut -c3-

重置所有未修改的文件。

git ls-files -v | grep '^[a-z]' | cut -c3- | xargs git update-index --no-assume-unchanged --

注意:这个已经在其他地方列出的命令似乎不再重置所有假设不变的文件(我相信它曾经和以前列出它作为一个解决方案):

git update-index --really-refresh

快捷键

为了让这些常见的任务更容易在git中执行,为您的用户在.gitconfig中添加/更新以下别名部分(例如~/。*nix或macOS系统上的gitconfig):

[alias]
    hide = update-index --assume-unchanged
    unhide = update-index --no-assume-unchanged
    unhide-all = ! git ls-files -v | grep '^[a-z]' | cut -c3- | xargs git unhide --
    hidden = ! git ls-files -v | grep '^[a-z]' | cut -c3-

如果你想撤销应用的所有文件,假设没有任何状态,而不仅仅是缓存(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来撤销

要撤消/显示设置为assume-unchanged的dir's/files,执行以下命令:

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

要获得一个目录下的未修改的文件列表,运行以下命令:

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

如果你正在使用Git扩展,请按照以下步骤进行操作:

进入提交窗口。 单击名为Working directory changes的下拉菜单。 选择显示假定未更改的文件选项。 右键单击要取消预设的文件。 选择“不假设不变”。

你完成了。

在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