jedcunningham commented on code in PR #42171: URL: https://github.com/apache/airflow/pull/42171#discussion_r1755374131
########## contributing-docs/10_working_with_git.rst: ########## @@ -191,11 +191,13 @@ Summary Useful when you understand the flow but don't remember the steps and want a quick reference. -``git fetch --all`` -``git merge-base my-branch apache/main`` -``git checkout my-branch`` -``git rebase HASH --onto apache/main`` -``git push --force-with-lease`` +``` +git fetch --all +git merge-base my-branch apache/main +git checkout my-branch +git rebase HASH --onto apache/main +git push --force-with-lease +``` Review Comment: ```suggestion `` git fetch --all git merge-base my-branch apache/main git checkout my-branch git rebase HASH --onto apache/main git push --force-with-lease `` ``` -- 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]
