From 441bc9036b2eac6c8d64d6073a1c02006cf5b988 Mon Sep 17 00:00:00 2001 From: Jon Gadsden Date: Sun, 11 Apr 2021 10:04:33 +0100 Subject: [PATCH] default branch name is now 'main' --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index b58343cd6..0bb5f73b8 100644 --- a/README.md +++ b/README.md @@ -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 ====