小编典典

撤消 git update-index --skip-worktree

all

不久前,我这样做是为了忽略对 git 跟踪的文件的更改:

git update-index --skip-worktree <file>

现在我实际上想将该文件的更改提交到源。如何撤消 的影响skip-worktree


阅读 84

收藏
2022-07-31

共1个答案

小编典典

啊哈!我只是想要:

git update-index --no-skip-worktree <file>
2022-07-31