snuyanzin commented on PR #26055: URL: https://github.com/apache/flink/pull/26055#issuecomment-2664000542
I did myself for the future there are multiple ways: ``` git checkout master git switch -c newbranch git cherry-pick <here put actual commit id NOT including merge commit> # if there are multiple commits, repeat this for every commit git push -f origin newbranch:<remote branch> ``` another way ``` git checkout master git fetch upstream git checkout your_branch git merge upstream/master git rebase upstream/master git push -f origin your_branch:your_remote_branch ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
