Versions Compared

Key

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

...

Create a branch in each repository that you need to change. For example, if your fix requires changes in both the jdk and hotspot repos, you could do this:

Code Block
languagebash
$ #From# From the root of your local forest
$ hg -R hotspot branch "JDK-7000001"
$ hg -R jdk branch "JDK-7000001"

...

How do I update my branch with the latest upstream changes?

Code Block
languagebash
$ # From local forest
$ hg tpull # make sure the default branch has latest changes
$ hg update xxx  # make sure you are sitting on your branch head tbranch?
$ hg merge default #tmerge
$ hg commit -m "Merge"#tcommit

 

How should I push a branch?

...