[Numpy-discussion] Development branches renamed

Stefan van der Walt stefanv at berkeley.edu
Thu Mar 4 02:08:59 EST 2021


Hi everyone,

The development branches of most of the repositories on github.com/numpy have been renamed to `main` (this is the GitHub default for newly created repositories).  The move has not yet been made for sub-projects such as `numpydoc` or `numpy.org`, but those should follow soon.

We were able to preserve all PRs, other than those for which the original branches have been deleted.

You can update your locally cloned repository to have a `main` branch as follows:

git branch -m master main
git fetch <YOUR_UPSTREAM_REMOTE>
git branch -u <YOUR_UPSTREAM_REMOTE>/main main

(where YOUR_UPSTREAM_REMOTE is typically called `upstream` or `origin`)

If you have any trouble, let us know.

Best regards,
Stéfan


More information about the NumPy-Discussion mailing list