2015-10-02 23:58:36 +00:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository quickstart">
|
2015-12-07 22:30:52 +00:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui grid">
|
|
|
|
<div class="sixteen wide column content">
|
|
|
|
{{template "base/alert" .}}
|
2019-01-23 18:58:38 +00:00
|
|
|
{{if .Repository.IsArchived}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
{{.i18n.Tr "repo.archive.title"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-11-28 11:26:14 +00:00
|
|
|
{{if .CanWriteCode}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{.i18n.Tr "repo.quick_guide"}}
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached guide table segment">
|
|
|
|
<div class="item">
|
|
|
|
<h3>{{.i18n.Tr "repo.clone_this_repo"}} <small>{{.i18n.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository" | Str2html}}</small></h3>
|
|
|
|
<div class="ui action small input">
|
2016-09-18 08:54:33 +00:00
|
|
|
{{if not $.DisableHTTP}}
|
|
|
|
<button class="ui basic clone button" id="repo-clone-https" data-link="{{.CloneLink.HTTPS}}">
|
|
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
{{if not $.DisableSSH}}
|
2016-02-01 16:30:28 +00:00
|
|
|
<button class="ui basic clone button" id="repo-clone-ssh" data-link="{{.CloneLink.SSH}}">
|
2015-12-07 22:30:52 +00:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2016-09-18 08:54:33 +00:00
|
|
|
{{if not $.DisableHTTP}}
|
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.HTTPS}}" readonly>
|
|
|
|
{{else}}
|
|
|
|
<input id="repo-clone-url" value="{{$.CloneLink.SSH}}" readonly>
|
|
|
|
{{end}}
|
2017-07-15 14:21:51 +00:00
|
|
|
{{if not (and $.DisableHTTP $.DisableSSH)}}
|
|
|
|
<button class="ui basic button poping up clipboard" id="clipboard-btn" data-original="{{.i18n.Tr "repo.copy_link"}}" data-success="{{.i18n.Tr "repo.copy_link_success"}}" data-error="{{.i18n.Tr "repo.copy_link_error"}}" data-content="{{.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-target="#repo-clone-url">
|
2020-02-11 17:02:41 +00:00
|
|
|
{{svg "octicon-clippy" 16}}
|
2017-07-15 14:21:51 +00:00
|
|
|
</button>
|
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-02 23:58:36 +00:00
|
|
|
|
2019-01-23 18:58:38 +00:00
|
|
|
{{if not .Repository.IsArchived}}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
|
|
|
|
<div class="item">
|
|
|
|
<h3>{{.i18n.Tr "repo.create_new_repo_command"}}</h3>
|
|
|
|
<div class="markdown">
|
|
|
|
<pre><code>touch README.md
|
2014-07-26 04:24:27 +00:00
|
|
|
git init
|
|
|
|
git add README.md
|
|
|
|
git commit -m "first commit"
|
2015-08-09 17:38:26 +00:00
|
|
|
git remote add origin <span class="clone-url">{{if $.DisableSSH}}{{$.CloneLink.HTTPS}}{{else}}{{$.CloneLink.SSH}}{{end}}</span>
|
2020-03-26 19:14:51 +00:00
|
|
|
git push -u origin {{if ne .Repository.DefaultBranch "master"}}master:{{.Repository.DefaultBranch}}{{else}}master{{end}}</code></pre>
|
2019-01-23 18:58:38 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2019-01-23 18:58:38 +00:00
|
|
|
<div class="ui divider"></div>
|
2015-10-02 23:58:36 +00:00
|
|
|
|
2019-01-23 18:58:38 +00:00
|
|
|
<div class="item">
|
|
|
|
<h3>{{.i18n.Tr "repo.push_exist_repo"}}</h3>
|
|
|
|
<div class="markdown">
|
|
|
|
<pre><code>git remote add origin <span class="clone-url">{{if $.DisableSSH}}{{$.CloneLink.HTTPS}}{{else}}{{$.CloneLink.SSH}}{{end}}</span>
|
2020-03-26 19:14:51 +00:00
|
|
|
git push -u origin {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-23 18:58:38 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2019-01-23 18:58:38 +00:00
|
|
|
{{end}}
|
2017-03-18 10:59:07 +00:00
|
|
|
{{else}}
|
|
|
|
<div class="ui segment center">
|
2019-01-18 00:01:04 +00:00
|
|
|
{{.i18n.Tr "repo.empty_message"}}
|
2017-03-18 10:59:07 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 04:24:27 +00:00
|
|
|
</div>
|
2015-10-02 23:58:36 +00:00
|
|
|
{{template "base/footer" .}}
|