I'm using Mercurial and am a bit of a newbie. I just committed a change to my repo successfully, then ran hg pull and hg update successfully - no merges and no conflicts showed up.
Then I tried to push to the remote repo, and got the dreaded: abort: push creates new remote heads!
hg glog shows the following:
@ changeset: 576:c4c58970f141
| tag: tip
| user: me
| parent: 566:70e287df5439
|
| o changeset: 575:7ae70ddd2b6e
| | branch: mongo
| |
| o changeset: 574:904da90475ef
| | branch: mongo
| |
| o changeset: 567:cad7a006965b
|/ branch: mongo
|
o changeset: 566:70e287df5439
| user: me
|
Looks like someone has created a new branch in the repo, which is fine: I just want to push my changes to the default branch, but I don't know how.
How can I push changeset 576? Do I need to specify that it's to branch default?