...
Code Block | ||
---|---|---|
| ||
$ git remote add upstream <URL-FOR-ORIGINAL-OPENJDK-REPOSITORY> $ # for each branch you want to sync $ git checkout <BRANCH> $ git pull upstream <BRANCH> $ git push origin <BRANCH> |
Pull
...
Requests
What is a pull request?
A pull request is a way to suggest that some changes from a personal fork should be incorporated into the original repository the personal fork was created from. Reviewers can comment upon and need to approve a pull request before it can be integrated. The concept of a pull request is very similar to OpenJDK's concept of "RFR" emails - both are used to suggest changes and offer a way for reviewers to provide feedback on the suggested changes.
...
- If you are using a web browser, click the downwards pointing arrow on the green "Create Pull Request" button and choose "Create Draft Pull Request":
- If you are using GitHub CLI, provide the
--draft
flag togh pr create.
- If you are using the Skara CLI tools, provide the
--draft
to flag togit pr create
.
How do I transition a pull request from draft to ready for review?
- If you are using a web browser, see https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/changing-the-stage-of-a-pull-request
- If you are using the Skara CLI tools, run
git pr set --no-draft.
SSH
Keys
How do I generate an SSH key?
...
Overview
Content Tools
ThemeBuilder