2015-10-02 19:58:36 -04:00
|
|
|
{{template "base/head" .}}
|
2020-11-30 23:00:14 -05:00
|
|
|
<div class="page-content repository quickstart">
|
2015-12-07 17:30:52 -05:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui grid">
|
|
|
|
<div class="sixteen wide column content">
|
|
|
|
{{template "base/alert" .}}
|
2019-01-23 13:58:38 -05:00
|
|
|
{{if .Repository.IsArchived}}
|
|
|
|
<div class="ui warning message">
|
|
|
|
{{.i18n.Tr "repo.archive.title"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2021-11-22 17:32:16 -05:00
|
|
|
{{if .Repository.IsBroken}}
|
|
|
|
<div class="ui segment center">
|
|
|
|
{{.i18n.Tr "repo.broken_message"}}
|
|
|
|
</div>
|
|
|
|
{{else if .CanWriteCode}}
|
2015-12-07 17:30:52 -05: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">
|
2020-12-28 13:30:06 -05:00
|
|
|
{{template "repo/clone_buttons" .}}
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-02 19:58:36 -04:00
|
|
|
|
2019-01-23 13:58:38 -05:00
|
|
|
{{if not .Repository.IsArchived}}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
|
|
|
|
<div class="item">
|
|
|
|
<h3>{{.i18n.Tr "repo.create_new_repo_command"}}</h3>
|
2021-05-07 04:43:41 -04:00
|
|
|
<div class="markup">
|
2019-01-23 13:58:38 -05:00
|
|
|
<pre><code>touch README.md
|
2014-07-26 00:24:27 -04:00
|
|
|
git init
|
2020-07-03 17:22:14 -04:00
|
|
|
{{if ne .Repository.DefaultBranch "master"}}git checkout -b {{.Repository.DefaultBranch}}{{end}}
|
2014-07-26 00:24:27 -04:00
|
|
|
git add README.md
|
|
|
|
git commit -m "first commit"
|
2021-06-30 14:40:51 -04:00
|
|
|
git remote add origin <span class="clone-url">{{$.CloneLink.HTTPS}}</span>
|
2020-06-17 16:53:55 -04:00
|
|
|
git push -u origin {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-23 13:58:38 -05:00
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2019-01-23 13:58:38 -05:00
|
|
|
<div class="ui divider"></div>
|
2015-10-02 19:58:36 -04:00
|
|
|
|
2019-01-23 13:58:38 -05:00
|
|
|
<div class="item">
|
|
|
|
<h3>{{.i18n.Tr "repo.push_exist_repo"}}</h3>
|
2021-05-07 04:43:41 -04:00
|
|
|
<div class="markup">
|
2021-06-30 14:40:51 -04:00
|
|
|
<pre><code>git remote add origin <span class="clone-url">{{$.CloneLink.HTTPS}}</span>
|
2020-03-26 15:14:51 -04:00
|
|
|
git push -u origin {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-23 13:58:38 -05:00
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
</div>
|
2021-06-30 14:40:51 -04:00
|
|
|
<script defer>
|
|
|
|
/* eslint-disable no-undef */
|
|
|
|
const cloneUrls = document.getElementsByClassName('clone-url');
|
|
|
|
if (cloneUrls) {
|
|
|
|
for (let i = 0; i < cloneUrls.length; i++) {
|
2021-11-22 03:19:01 -05:00
|
|
|
cloneUrls[i].textContent = (isSSH ? sshButton : httpsButton).getAttribute('data-link');
|
2021-06-30 14:40:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
2019-01-23 13:58:38 -05:00
|
|
|
{{end}}
|
2017-03-18 06:59:07 -04:00
|
|
|
{{else}}
|
|
|
|
<div class="ui segment center">
|
2019-01-17 19:01:04 -05:00
|
|
|
{{.i18n.Tr "repo.empty_message"}}
|
2017-03-18 06:59:07 -04:00
|
|
|
</div>
|
2015-12-07 17:30:52 -05:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 00:24:27 -04:00
|
|
|
</div>
|
2015-10-02 19:58:36 -04:00
|
|
|
{{template "base/footer" .}}
|