Mercurial:IntelliJ Idea:中止:无法提交已应用的 mq 补丁
Mercurial: IntelliJ Idea: abort: cannot commit over an applied mq patch
我对 Mercurial 完全陌生。
通过 IntelliJ Idea 提交和推送我的更改时,我不小心按下了提交和创建 MQ 补丁按钮。
提交通过,但推送没有。我成功地强制推动了我的更改(这不是一件好事),但我现在无法提交任何内容。
我收到这个错误:
1 file failed to commit: tip fix. abort: cannot commit over an applied mq patch
修复非常简单:
我必须在 IntelliJ Idea 终端中输入这两个命令:
1. hg commit (with your message commit)
2. hg push
现在一切都恢复正常了。
我对 Mercurial 完全陌生。
通过 IntelliJ Idea 提交和推送我的更改时,我不小心按下了提交和创建 MQ 补丁按钮。
提交通过,但推送没有。我成功地强制推动了我的更改(这不是一件好事),但我现在无法提交任何内容。
我收到这个错误:
1 file failed to commit: tip fix. abort: cannot commit over an applied mq patch
修复非常简单: 我必须在 IntelliJ Idea 终端中输入这两个命令:
1. hg commit (with your message commit)
2. hg push
现在一切都恢复正常了。