Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我跑了git config --global core.worktree,它弄乱了我所有的 git repos。如何撤消此更改?core.worktree 的默认值是什么,我该如何设置?
git config --global core.worktree
您可以简单地删除该配置(git config --global --unset core.worktree)或:
git config --global --unset core.worktree
将路径设置为工作树的根。 这可以被GIT_WORK_TREE环境变量和--work-tree命令行选项覆盖
GIT_WORK_TREE
--work-tree
默认的 work_tree 目录是其中的目录.git。
.git