rename default branch in files

This commit is contained in:
David Lord 2021-05-11 15:18:41 -07:00
parent 6fb1101f70
commit 52adf2ec21
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
5 changed files with 9 additions and 9 deletions

View file

@ -143,15 +143,15 @@ Start coding
.. code-block:: text
$ git fetch origin
$ git checkout -b your-branch-name origin/1.1.x
$ git checkout -b your-branch-name origin/2.0.x
If you're submitting a feature addition or change, branch off of the
"master" branch.
"main" branch.
.. code-block:: text
$ git fetch origin
$ git checkout -b your-branch-name origin/master
$ git checkout -b your-branch-name origin/main
- Using your favorite editor, make your changes,
`committing as you go`_.