@@ -49,9 +49,9 @@ You'll have to create a development environment using a Git checkout:
4949 # Configure remotes such that you can pull changes from the googleapis/python-api-core
5050 # repository into your local repository.
5151 $ git remote add upstream git@github.com:googleapis/python-api-core.git
52- # fetch and merge changes from upstream into master
52+ # fetch and merge changes from upstream into main
5353 $ git fetch upstream
54- $ git merge upstream/master
54+ $ git merge upstream/main
5555
5656Now your local repo is set up such that you will push changes to your GitHub
5757repo, from which you can submit a pull request.
@@ -109,12 +109,12 @@ Coding Style
109109 variables::
110110
111111 export GOOGLE_CLOUD_TESTING_REMOTE="upstream"
112- export GOOGLE_CLOUD_TESTING_BRANCH="master "
112+ export GOOGLE_CLOUD_TESTING_BRANCH="main "
113113
114114 By doing this, you are specifying the location of the most up-to-date
115115 version of ``python-api-core ``. The the suggested remote name ``upstream ``
116116 should point to the official ``googleapis `` checkout and the
117- the branch should be the main branch on that remote (``master ``).
117+ the branch should be the main branch on that remote (``main ``).
118118
119119- This repository contains configuration for the
120120 `pre-commit <https://pre-commit.com/ >`__ tool, which automates checking
@@ -185,7 +185,7 @@ The `description on PyPI`_ for the project comes directly from the
185185``README ``. Due to the reStructuredText (``rst ``) parser used by
186186PyPI, relative links which will work on GitHub (e.g. ``CONTRIBUTING.rst ``
187187instead of
188- ``https://github.com/googleapis/python-api-core/blob/master /CONTRIBUTING.rst ``)
188+ ``https://github.com/googleapis/python-api-core/blob/main /CONTRIBUTING.rst ``)
189189may cause problems creating links or rendering the description.
190190
191191.. _description on PyPI : https://pypi.org/project/google-api-core
@@ -210,7 +210,7 @@ We support:
210210
211211Supported versions can be found in our ``noxfile.py `` `config `_.
212212
213- .. _config : https://github.com/googleapis/python-api-core/blob/master /noxfile.py
213+ .. _config : https://github.com/googleapis/python-api-core/blob/main /noxfile.py
214214
215215
216216We also explicitly decided to support Python 3 beginning with version 3.6.
0 commit comments