matthiasblaesing commented on PR #5372: URL: https://github.com/apache/netbeans/pull/5372#issuecomment-1405595343
There might or might not be a new RC, if there is this should be in. I added it to the NB17 milestone and changed the target branch to `delivery`, but you can see in the list of commits, that merging as is would cause multiple commits to be pulled in. There are two options: a) You create a new pull request that is based on `delivery` and opened with target `delivery` or b) You feel happy with the git tools and do basicly this: ```bash # Ensure the branch this PR is based on is active git checkout import-local-schema # Move it to a different name git branch -m import-local-schema-on-master # Create a new local branch with the old name # (0e504e5911846f4f66b3d97cb5d1c884b83a50ab is current HEAD of `delivery`) # maybe you need to `git fetch` from the github repository of apache netbeans git checkout -b import-local-schema 0e504e5911846f4f66b3d97cb5d1c884b83a50ab # Cherry pick your commit into the new branch git cherry-pick 2dce1801e795731248679ca061315db7e2fcd6fa # Force push this branch into the original branch that created this PR (this assumes you named your upstream origin) git push -f -u origin import-local-schema ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
