2015-10-03 02:58:36 +03:00
|
|
|
{{template "base/head" .}}
|
2023-02-02 01:56:10 +03:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository quickstart">
|
2015-12-08 01:30:52 +03:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
<div class="ui grid">
|
|
|
|
<div class="sixteen wide column content">
|
|
|
|
{{template "base/alert" .}}
|
2019-01-23 21:58:38 +03:00
|
|
|
{{if .Repository.IsArchived}}
|
2023-07-08 13:57:17 +03:00
|
|
|
<div class="ui warning message gt-text-center">
|
2023-04-26 17:46:26 +03:00
|
|
|
{{if .Repository.ArchivedUnix.IsZero}}
|
|
|
|
{{.locale.Tr "repo.archive.title"}}
|
|
|
|
{{else}}
|
|
|
|
{{.locale.Tr "repo.archive.title_date" (DateTime "long" .Repository.ArchivedUnix) | Safe}}
|
|
|
|
{{end}}
|
2019-01-23 21:58:38 +03:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2021-11-23 01:32:16 +03:00
|
|
|
{{if .Repository.IsBroken}}
|
|
|
|
<div class="ui segment center">
|
2022-06-27 23:58:46 +03:00
|
|
|
{{.locale.Tr "repo.broken_message"}}
|
2021-11-23 01:32:16 +03:00
|
|
|
</div>
|
|
|
|
{{else if .CanWriteCode}}
|
2015-12-08 01:30:52 +03:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 23:58:46 +03:00
|
|
|
{{.locale.Tr "repo.quick_guide"}}
|
2015-12-08 01:30:52 +03:00
|
|
|
</h4>
|
2022-03-29 06:21:30 +03:00
|
|
|
<div class="ui attached guide table segment empty-repo-guide">
|
2015-12-08 01:30:52 +03:00
|
|
|
<div class="item">
|
2022-06-27 23:58:46 +03:00
|
|
|
<h3>{{.locale.Tr "repo.clone_this_repo"}} <small>{{.locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository" | Str2html}}</small></h3>
|
2023-04-19 16:40:42 +03:00
|
|
|
|
2023-06-18 13:31:42 +03:00
|
|
|
<div class="repo-button-row">
|
2023-04-19 16:40:42 +03:00
|
|
|
{{if and .CanWriteCode (not .Repository.IsArchived)}}
|
|
|
|
<a class="ui small button" href="{{.RepoLink}}/_new/{{.BranchName | PathEscapeSegments}}/">
|
|
|
|
{{.locale.Tr "repo.editor.new_file"}}
|
|
|
|
</a>
|
|
|
|
{{if .RepositoryUploadEnabled}}
|
|
|
|
<a class="ui small button" href="{{.RepoLink}}/_upload/{{.BranchName | PathEscapeSegments}}/">
|
|
|
|
{{.locale.Tr "repo.editor.upload_file"}}
|
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
<div class="ui action small input gt-df gt-f1">
|
|
|
|
{{template "repo/clone_buttons" .}}
|
|
|
|
</div>
|
2015-12-08 01:30:52 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-03 02:58:36 +03:00
|
|
|
|
2019-01-23 21:58:38 +03:00
|
|
|
{{if not .Repository.IsArchived}}
|
2023-06-29 15:24:22 +03:00
|
|
|
<div class="divider gt-my-0"></div>
|
2019-01-23 21:58:38 +03:00
|
|
|
|
|
|
|
<div class="item">
|
2022-06-27 23:58:46 +03:00
|
|
|
<h3>{{.locale.Tr "repo.create_new_repo_command"}}</h3>
|
2021-05-07 11:43:41 +03:00
|
|
|
<div class="markup">
|
2019-01-23 21:58:38 +03:00
|
|
|
<pre><code>touch README.md
|
2014-07-26 08:24:27 +04:00
|
|
|
git init
|
2020-07-04 00:22:14 +03:00
|
|
|
{{if ne .Repository.DefaultBranch "master"}}git checkout -b {{.Repository.DefaultBranch}}{{end}}
|
2014-07-26 08:24:27 +04:00
|
|
|
git add README.md
|
|
|
|
git commit -m "first commit"
|
2022-08-02 05:52:05 +03:00
|
|
|
git remote add origin <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span>
|
2020-06-17 23:53:55 +03:00
|
|
|
git push -u origin {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-23 21:58:38 +03:00
|
|
|
</div>
|
2015-12-08 01:30:52 +03:00
|
|
|
</div>
|
2023-06-29 15:24:22 +03:00
|
|
|
<div class="divider"></div>
|
2015-10-03 02:58:36 +03:00
|
|
|
|
2019-01-23 21:58:38 +03:00
|
|
|
<div class="item">
|
2022-06-27 23:58:46 +03:00
|
|
|
<h3>{{.locale.Tr "repo.push_exist_repo"}}</h3>
|
2021-05-07 11:43:41 +03:00
|
|
|
<div class="markup">
|
2022-08-02 05:52:05 +03:00
|
|
|
<pre><code>git remote add origin <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span>
|
2020-03-26 22:14:51 +03:00
|
|
|
git push -u origin {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-23 21:58:38 +03:00
|
|
|
</div>
|
2015-12-08 01:30:52 +03:00
|
|
|
</div>
|
2019-01-23 21:58:38 +03:00
|
|
|
{{end}}
|
2017-03-18 13:59:07 +03:00
|
|
|
{{else}}
|
|
|
|
<div class="ui segment center">
|
2022-06-27 23:58:46 +03:00
|
|
|
{{.locale.Tr "repo.empty_message"}}
|
2017-03-18 13:59:07 +03:00
|
|
|
</div>
|
2015-12-08 01:30:52 +03:00
|
|
|
{{end}}
|
2023-04-26 06:28:37 +03:00
|
|
|
{{template "repo/clone_script" .}}
|
2015-12-08 01:30:52 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 08:24:27 +04:00
|
|
|
</div>
|
2015-10-03 02:58:36 +03:00
|
|
|
{{template "base/footer" .}}
|