diff options
-rw-r--r-- | templates/repo/clone_buttons.tmpl | 2 | ||||
-rw-r--r-- | templates/repo/empty.tmpl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/repo/clone_buttons.tmpl b/templates/repo/clone_buttons.tmpl index 67a509835f..0d0fe73014 100644 --- a/templates/repo/clone_buttons.tmpl +++ b/templates/repo/clone_buttons.tmpl @@ -9,7 +9,7 @@ SSH </button> {{end}} -<input id="repo-clone-url" class="js-clone-url" value="" size="1" readonly> +<input id="repo-clone-url" class="js-clone-url" value="{{$.CloneButtonOriginLink.HTTPS}}" size="1" readonly> <button class="ui basic icon button tooltip" id="clipboard-btn" data-content="{{.locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url" aria-label="{{.locale.Tr "copy_url"}}"> {{svg "octicon-paste"}} </button> diff --git a/templates/repo/empty.tmpl b/templates/repo/empty.tmpl index 99f662cd0b..24547758a7 100644 --- a/templates/repo/empty.tmpl +++ b/templates/repo/empty.tmpl @@ -37,7 +37,7 @@ git init {{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="js-clone-url"></span> +git remote add origin <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span> git push -u origin {{.Repository.DefaultBranch}}</code></pre> </div> </div> @@ -46,7 +46,7 @@ git push -u origin {{.Repository.DefaultBranch}}</code></pre> <div class="item"> <h3>{{.locale.Tr "repo.push_exist_repo"}}</h3> <div class="markup"> - <pre><code>git remote add origin <span class="js-clone-url"></span> + <pre><code>git remote add origin <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span> git push -u origin {{.Repository.DefaultBranch}}</code></pre> </div> </div> |