tadayosi commented on pull request #3139: URL: https://github.com/apache/camel-k/pull/3139#issuecomment-1081413000
@Gre8t Just for a tip, I'd always create a different branch for submitting a pull req: ``` git checkout -b disable-deprecate-linters ``` then rebasing the latest `main` is as easy as (assuming the upstream repo is named as `upstream`): ``` git fetch upstream main:main git rebase main ``` After that you can force-push the branch to your repo: ``` git push origin disable-deprecate-linters -f ``` -- 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]
