Down for Maintenance from December 17, 2025 Wednesday 9:30pm PST to December 18, 2025 Thursday 3:30am PST (i.e., 05:30am -11:30am GMT, December 18, 2025 Thursday)
- Loading...
...
| Code Block | ||
|---|---|---|
| ||
$ hg pull # make sure the default branch has latest changes
$ hg update "JDK-7000001" # make sure you are sitting on your branch
$ hg merge default
$ hg commit
$ hg push |
...
| Code Block | ||
|---|---|---|
| ||
$ hg update -C "JDK-7000001"
$ hg commit --close-branch -m "Closing branch"
$ # Update repo to another branch to avoid mistakenly re-opening the closed branch.
$ hg update default
$ hg push |
Do the following:
| Code Block | ||
|---|---|---|
| ||
$ hg log -r "heads(all()) and not closed() and user('<user>') and not branch(default)" |
To see all the changes for a branch named "JDK-4040458" you can do this:
...