From cf0b3e29a72be5016af0b5a6b060cf21d1220066 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Sat, 4 Sep 2021 13:55:02 +0200 Subject: Customized project branch suggestion is now main (following Git) Until now in the main webpage, we were suggesting to call the new branch (to start customizing) as 'master' (following the old Git convention). However, Git has recently changed its default branch name to 'main'. With this commit, to be consistent with other newly created Git repos, we are suggesting to call the main customized branch as 'main'. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 0a27ca8..02fe15f 100644 --- a/index.html +++ b/index.html @@ -98,7 +98,7 @@
git clone https://git.maneage.org/project.git     # Clone Maneage, default branch `maneage'.
 mv project my-project && cd my-project            # Set custom name and enter directory.
 git remote rename origin origin-maneage           # Rename remote server to use `origin' later.
-git checkout -b master                            # Make new `master' branch, start customizing.
+git checkout -b main # Make new `main' branch, start customizing.

You are now ready to configure and make the raw template with the commands below. If they are successful, you can start customizing it. -- cgit v1.2.1