2015-10-03 05:28:36 +05:30
|
|
|
{{template "base/head" .}}
|
2020-12-01 09:30:14 +05:30
|
|
|
<div class="page-content repository quickstart">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui grid">
|
|
|
|
<div class="sixteen wide column content">
|
|
|
|
{{template "base/alert" .}}
|
2019-01-24 00:28:38 +05:30
|
|
|
{{if .Repository.IsArchived}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
{{.i18n.Tr "repo.archive.title"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2018-11-28 16:56:14 +05:30
|
|
|
{{if .CanWriteCode}}
|
2015-12-08 04:00:52 +05:30
|
|
|
<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">
|
2020-12-29 00:00:06 +05:30
|
|
|
{{template "repo/clone_buttons" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-03 05:28:36 +05:30
|
|
|
|
2019-01-24 00:28:38 +05:30
|
|
|
{{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 09:54:27 +05:30
|
|
|
git init
|
2020-07-04 02:52:14 +05:30
|
|
|
{{if ne .Repository.DefaultBranch "master"}}git checkout -b {{.Repository.DefaultBranch}}{{end}}
|
2014-07-26 09:54:27 +05:30
|
|
|
git add README.md
|
|
|
|
git commit -m "first commit"
|
2015-08-09 23:08:26 +05:30
|
|
|
git remote add origin <span class="clone-url">{{if $.DisableSSH}}{{$.CloneLink.HTTPS}}{{else}}{{$.CloneLink.SSH}}{{end}}</span>
|
2020-06-18 02:23:55 +05:30
|
|
|
git push -u origin {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-24 00:28:38 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2019-01-24 00:28:38 +05:30
|
|
|
<div class="ui divider"></div>
|
2015-10-03 05:28:36 +05:30
|
|
|
|
2019-01-24 00:28:38 +05:30
|
|
|
<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-27 00:44:51 +05:30
|
|
|
git push -u origin {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-24 00:28:38 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2019-01-24 00:28:38 +05:30
|
|
|
{{end}}
|
2017-03-18 16:29:07 +05:30
|
|
|
{{else}}
|
|
|
|
<div class="ui segment center">
|
2019-01-18 05:31:04 +05:30
|
|
|
{{.i18n.Tr "repo.empty_message"}}
|
2017-03-18 16:29:07 +05:30
|
|
|
</div>
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 09:54:27 +05:30
|
|
|
</div>
|
2015-10-03 05:28:36 +05:30
|
|
|
{{template "base/footer" .}}
|