使用 git update-index
在 Git 中停止跟踪文件
有时,我们可能希望在仓库中保留一个文件,但不再希望跟踪其更改。我们可以使用带有 --skip-worktree
选项的 git update-index
命令来实现这一点。
$ git update-index --skip-worktree file1
命令 git update-index
的 --skip-worktree
选项使 Git 假装文件的版本是最新的,而是从索引版本中读取。这对于配置文件特别有用。