@@ -50,9 +50,9 @@ You'll have to create a development environment using a Git checkout:
5050 # Configure remotes such that you can pull changes from the googleapis/python-datastore
5151 # repository into your local repository.
5252 $ git remote add upstream git@github.com:googleapis/python-datastore.git
53- # fetch and merge changes from upstream into master
53+ # fetch and merge changes from upstream into main
5454 $ git fetch upstream
55- $ git merge upstream/master
55+ $ git merge upstream/main
5656
5757Now your local repo is set up such that you will push changes to your GitHub
5858repo, from which you can submit a pull request.
@@ -110,12 +110,12 @@ Coding Style
110110 variables::
111111
112112 export GOOGLE_CLOUD_TESTING_REMOTE="upstream"
113- export GOOGLE_CLOUD_TESTING_BRANCH="master "
113+ export GOOGLE_CLOUD_TESTING_BRANCH="main "
114114
115115 By doing this, you are specifying the location of the most up-to-date
116116 version of ``python-datastore ``. The the suggested remote name ``upstream ``
117117 should point to the official ``googleapis `` checkout and the
118- the branch should be the main branch on that remote (``master ``).
118+ the branch should be the main branch on that remote (``main ``).
119119
120120- This repository contains configuration for the
121121 `pre-commit <https://pre-commit.com/ >`__ tool, which automates checking
@@ -234,7 +234,7 @@ The `description on PyPI`_ for the project comes directly from the
234234``README ``. Due to the reStructuredText (``rst ``) parser used by
235235PyPI, relative links which will work on GitHub (e.g. ``CONTRIBUTING.rst ``
236236instead of
237- ``https://github.com/googleapis/python-datastore/blob/master /CONTRIBUTING.rst ``)
237+ ``https://github.com/googleapis/python-datastore/blob/main /CONTRIBUTING.rst ``)
238238may cause problems creating links or rendering the description.
239239
240240.. _description on PyPI : https://pypi.org/project/google-cloud-datastore
@@ -259,7 +259,7 @@ We support:
259259
260260Supported versions can be found in our ``noxfile.py `` `config `_.
261261
262- .. _config : https://github.com/googleapis/python-datastore/blob/master /noxfile.py
262+ .. _config : https://github.com/googleapis/python-datastore/blob/main /noxfile.py
263263
264264
265265We also explicitly decided to support Python 3 beginning with version 3.6.
0 commit comments