@@ -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-storage
5151 # repository into your local repository.
5252 $ git remote add upstream git@github.com:googleapis/python-storage.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.
@@ -104,12 +104,12 @@ Coding Style
104104 variables::
105105
106106 export GOOGLE_CLOUD_TESTING_REMOTE="upstream"
107- export GOOGLE_CLOUD_TESTING_BRANCH="master "
107+ export GOOGLE_CLOUD_TESTING_BRANCH="main "
108108
109109 By doing this, you are specifying the location of the most up-to-date
110110 version of ``python-storage ``. The the suggested remote name ``upstream ``
111111 should point to the official ``googleapis `` checkout and the
112- the branch should be the main branch on that remote (``master ``).
112+ the branch should be the main branch on that remote (``main ``).
113113
114114- This repository contains configuration for the
115115 `pre-commit <https://pre-commit.com/ >`__ tool, which automates checking
@@ -190,7 +190,7 @@ The `description on PyPI`_ for the project comes directly from the
190190``README ``. Due to the reStructuredText (``rst ``) parser used by
191191PyPI, relative links which will work on GitHub (e.g. ``CONTRIBUTING.rst ``
192192instead of
193- ``https://github.com/googleapis/python-storage/blob/master /CONTRIBUTING.rst ``)
193+ ``https://github.com/googleapis/python-storage/blob/main /CONTRIBUTING.rst ``)
194194may cause problems creating links or rendering the description.
195195
196196.. _description on PyPI : https://pypi.org/project/google-cloud-storage
@@ -215,7 +215,7 @@ We support:
215215
216216Supported versions can be found in our ``noxfile.py `` `config `_.
217217
218- .. _config : https://github.com/googleapis/python-storage/blob/master /noxfile.py
218+ .. _config : https://github.com/googleapis/python-storage/blob/main /noxfile.py
219219
220220Python 2.7 support is deprecated. All code changes should maintain Python 2.7 compatibility until January 1, 2020.
221221
0 commit comments