assume-unchanged方法
忽略跟踪:
git update-index --assume-unchanged /path/to/file
恢复跟踪:
git update-index --no-assume-unchanged /path/to/file
skip-worktree方法
忽略跟踪:
git update-index --skip-worktree /path/to/file
恢复跟踪:
git update-index --no-skip-worktree /path/to/file
发表回复