Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you'd like to avoid this oddity, you may prefer to rebase your change like this:

<<insert rebase example>>

Code Block
languagebash
$ # From local forest
$ hg tpull # make sure the default branch has latest changes
$ hg -R hotspot update "JDK-7000001"  # make sure you are sitting on your branch
$ hg -R jdk update "JDK-7000001"
$ hg -R hotspot rebase -d default --keepbranches
$ hg -R jdk rebase -d default --keepbranches

Unfortunately the trees extension does not support a trebase command. 

How should I push a branch?

...