default branch name is now 'main'

development
Jon Gadsden 2021-04-11 10:04:33 +01:00 committed by Junsik Shim
parent 539c4c0ab3
commit 441bc9036b
1 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,14 @@ Initial objectives:
-- Colin Claverie
Note that the original default branch was `master`, and this has now been renamed `main`. If you had a checkout with the old branch name then follow these instructions to get the new branch name:
```
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
```
Original Readme below
====