Why is a --new-branch flag needed?

后端 未结 3 1406
梦谈多话
梦谈多话 2020-12-21 00:58

Isn\'t this a normal workflow?

[default] $ hg branch foo

[foo] $ [... some commits ...]

[foo] $ hg update default

[default] $ hg merge foo

[default] $ h         


        
3条回答
  •  旧时难觅i
    2020-12-21 01:34

    This is a one-time thing. Just use --new-branch the first time you push a (new) branch. It's normal.

    Every other push can remain as hg push, no --new-branch flag.

提交回复
热议问题