diff --git a/src/main/twirl/repo/guide.scala.html b/src/main/twirl/repo/guide.scala.html index 28d42a2..d373280 100644 --- a/src/main/twirl/repo/guide.scala.html +++ b/src/main/twirl/repo/guide.scala.html @@ -7,21 +7,37 @@ @if(!hasWritePermission){

This is an empty repository

} else { +

Quick setup — if you've done this kind of thing before

+
+ via HTTP + @if(settings.ssh && loginAccount.isDefined){ + or + SSH + } +

Create a new repository on the command line

       touch README.md
       git init
       git add README.md
       git commit -m "first commit"
-      git remote add origin @repository.httpUrl
+      git remote add origin @repository.httpUrl
       git push -u origin master
       

Push an existing repository from the command line

-      git remote add origin @repository.httpUrl
+      git remote add origin @repository.httpUrl
       git push -u origin master
       
+ } } } \ No newline at end of file