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.
我在 mercurial 中有几个分支,都表明有多个头。当我尝试执行hg merge -r $x -r $y以尝试合并我收到的两个修订时,错误表明存在未完成的未提交合并。
hg merge -r $x -r $y
这可能是因为您之前开始了合并但没有提交它。您可以通过运行来撤消工作目录中的先前合并hg update -C。
hg update -C