不久前,我这样做是为了忽略对 git 跟踪的文件的更改:
git update-index --skip-worktree <file>
现在我实际上想将该文件的更改提交到源。如何撤消 的影响skip-worktree?
skip-worktree
啊哈!我只是想要:
git update-index --no-skip-worktree <file>