Browse Source

templates/repo/empty.tmpl : fix repo setup instructions (#12122)

Co-authored-by: codeberg <codeberg@codeberg.org>
for-closed-social
Andreas Shimokawa 3 years ago
committed by GitHub
parent
commit
510e4bd245
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      templates/repo/empty.tmpl

+ 1
- 1
templates/repo/empty.tmpl View File

@ -49,7 +49,7 @@
<div class="markdown">
<pre><code>touch README.md
git init
{{if ne .Repository.DefaultBranch "master"}}git branch -m master {{.Repository.DefaultBranch}}{{end}}
{{if ne .Repository.DefaultBranch "master"}}git checkout -b {{.Repository.DefaultBranch}}{{end}}
git add README.md
git commit -m "first commit"
git remote add origin <span class="clone-url">{{if $.DisableSSH}}{{$.CloneLink.HTTPS}}{{else}}{{$.CloneLink.SSH}}{{end}}</span>

Loading…
Cancel
Save