uranusjr commented on code in PR #42171:
URL: https://github.com/apache/airflow/pull/42171#discussion_r1755378323
##########
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
```
I think this is the correct way
https://www.sphinx-doc.org/en/master/usage/restructuredtext/basics.html#literal-blocks
--
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]