version control - hg: Change root of named branch -
i created named branch in our repository feature - however, against better judgement, branched off of our head revision instead of earlier 1 (where branched off multiple feature branches).
i've made commits branch - local only, not yet pushed - i'd move branch root earlier revision on default branch. don't want make changes commits (as there won't conflicts); want change parent revision branch came from, if that's possible.
how can in mercurial?
just want change parent revision branch came from
just rebase: hg rebase -s moved_root -d new_parent_of_moved_root --keepbranches
Comments
Post a Comment