...
The finer points of Submission Forests are covered in the FAQ below. The jdk9/hs-submit forest will be maintained by <Duke>. If you have problems, please send mail to <hs-dev@openjdkxxx@openjdk.java.net>
...
FAQ
Table of Contents | ||||
---|---|---|---|---|
|
How to get started
Say you need to make a simple fix to the README file at the head of the hotspot repository . This to fix addresses bug JDK-7000001. The following would do it:
Code Block | ||
---|---|---|
| ||
$ hg tclone --branch default http://hg.openjdk.java.net/jdk9/hs-submit $ cd hs-submit/hotspot $ hg branch "JDK-7000001" $ echo "Make the README longer." >> README $ # Get code review here $ hg commit -l msg.txt $ hg# push --new-branch |
FAQ
Table of Contents | ||||
---|---|---|---|---|
|
How to get started
To get started, make a clone of the submission forest using your favorite method. In these examples we use the Mercurial trees extension. You may find it convenient to clone only the default branch.
Code Block | ||||
---|---|---|---|---|
| ||||
% hg tclone --branch default http://hg.openjdk.java.net/jdk9/hs-submit |
...
Get your code review here
$ hg push --new-branch |
What should I call my branch?
...