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.
我有两个补丁:
patch1
patch2
当我申请patch1时,这是唯一被申请的东西。当我做hg qpop然后做hg qpush patch2时,由于某种原因patch1也被应用了。我怎样才能使它们彼此独立?
hg qpop
hg qpush patch2
您需要为此使用该--move选项。例如:
--move
hg qpush --move patch2
这仅适用于patch2,但不适用于其上的任何补丁。