Hi,
The "master" branch of the following Python GitHub repositories have
been renamed to "main":
* devguide
* peps
* voters
For the rationale of the rename, see:
https://sfconservancy.org/news/2020/jun/23/gitbranchname/
If you already have a Git checkout of one of these repositories, you
can rename your local master branch with these commands (where "orign"
is the github.com/python/... remote):
---
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
---
Tell me if you have any issue with the branch rename.
Thanks Brett, Ee, Mariatta and the Steering Council who helped to
rename these branches ;-)
Victor
--
Night gathers, and now my watch begins. It shall not end until my death.
_______________________________________________
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-leave@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/WUGZX7KW3B33LM7R7O2ON6NRQFDGCTSW/
Code of Conduct: http://python.org/psf/codeofconduct/