aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2021-09-04 13:55:02 +0200
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2021-09-04 13:55:02 +0200
commitcf0b3e29a72be5016af0b5a6b060cf21d1220066 (patch)
treec9e8b71ae961f27e1cdf37ce55972da3426f064a
parent9bd456a3b37a09917a03c11c4c9c9fef7db75ecc (diff)
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'.
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index 0a27ca8..02fe15f 100644
--- a/index.html
+++ b/index.html
@@ -98,7 +98,7 @@
<pre><code>git clone https://git.maneage.org/project.git <span class="comment"># Clone Maneage, default branch `maneage'.</span>
mv project my-project && cd my-project <span class="comment"># Set custom name and enter directory.</span>
git remote rename origin origin-maneage <span class="comment"># Rename remote server to use `origin' later.</span>
-git checkout -b master <span class="comment"># Make new `master' branch, start customizing.</span></code></pre>
+git checkout -b main <span class="comment"># Make new `main' branch, start customizing.</span></code></pre>
</p>
<p>You are now ready to configure and make the raw template with the commands below.
If they are successful, you can start customizing it.