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 目录上执行以下操作:
在一个分支上编译
在另一个分支工作
您可以为此使用其他工作树。一个工作树可以在一个分支上签出,它有自己的目录,您可以在其中进行编译。
另一个工作树可以在另一个分支上签出,在一个不同的目录中,以便您继续工作而不会干扰另一个工作树中正在进行的编译。
在此处查看文档。
通常 :
git worktree add <path/to/new/worktree>
然后cd在您的目录之间执行任一工作树上的命令。
cd