📌  相关文章
📜  git 忽略本地文件更改 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:26.663000             🧑  作者: Mango

代码示例1
# To skip local changes to files managed by git
$ git update-index --skip-worktree path/to/file
# To restore normal git behaviour
$ git update-index --no-skip-worktree path/to/file

# assume-unchanged can also be used, it's designed for local files that DON'T change
# git reset --hard will drop files ignored through assume-unchanged
$ git update-index --assume-unchanged path/to/file
$ git update-index --no-assume-unchanged path/to/file