diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2021-09-04 13:55:02 +0200 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2021-09-04 13:55:02 +0200 |
commit | cf0b3e29a72be5016af0b5a6b060cf21d1220066 (patch) | |
tree | c9e8b71ae961f27e1cdf37ce55972da3426f064a /index.html | |
parent | 9bd456a3b37a09917a03c11c4c9c9fef7db75ecc (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'.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |