On Tue, 6 May 2025 16:53:07 GMT, Markus KARG <d...@openjdk.org> wrote:
> so my question was only about how to perform the update. Locally, if your remote repo that points to github.com/openjdk/jdk is named `upstream` and the local branch from which you have created this PR is named `getchars`, then you would do something like the following: # fetch latest changes in master branch of github.com/openjdk/jdk git fetch upstream master # update your local workspace to your local getchars branch (if you aren't already on it) git switch getchars # merge the changes from upstream master branch into this local getchars branch git merge -m "merge latest from master branch" upstream/master If there are no merge resolution conflicts, then those command should be enough and your local `getchars` branch should now have the upstream master changes. Once you build and test locally you can then push those changes from `getchars` branch to your forked remote repo's getchars branch (and thus automatically update this PR) using: # while being on getchars branch locally and your forked remote is named mkarg-remote git push mkarg-remote getchars ------------- PR Comment: https://git.openjdk.org/jdk/pull/21730#issuecomment-2855309443