2015-10-02 19:58:36 -04:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 19:56:10 -03:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content repository quickstart">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{template "repo/header" .}}
|
|
|
|
|
<div class="ui container">
|
|
|
|
|
<div class="ui grid">
|
|
|
|
|
<div class="sixteen wide column content">
|
|
|
|
|
{{template "base/alert" .}}
|
2019-01-23 19:58:38 +01:00
|
|
|
{{if .Repository.IsArchived}}
|
2024-03-04 04:33:20 +01:00
|
|
|
<div class="ui warning message tw-text-center">
|
2023-04-26 16:46:26 +02:00
|
|
|
{{if .Repository.ArchivedUnix.IsZero}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.archive.title"}}
|
2023-04-26 16:46:26 +02:00
|
|
|
{{else}}
|
2024-11-04 19:30:00 +08:00
|
|
|
{{ctx.Locale.Tr "repo.archive.title_date" (DateUtils.AbsoluteLong .Repository.ArchivedUnix)}}
|
2023-04-26 16:46:26 +02:00
|
|
|
{{end}}
|
2019-01-23 19:58:38 +01:00
|
|
|
</div>
|
|
|
|
|
{{end}}
|
2025-01-04 18:47:24 +08:00
|
|
|
|
2021-11-22 22:32:16 +00:00
|
|
|
{{if .Repository.IsBroken}}
|
2025-01-04 18:47:24 +08:00
|
|
|
<div class="ui segment center">{{ctx.Locale.Tr "repo.broken_message"}}</div>
|
2025-01-06 12:07:52 +08:00
|
|
|
{{else if .RepoHasContentsWithoutBranch}}
|
2025-01-04 18:47:24 +08:00
|
|
|
<div class="ui segment center">{{ctx.Locale.Tr "repo.no_branch"}}</div>
|
2021-11-22 22:32:16 +00:00
|
|
|
{{else if .CanWriteCode}}
|
2025-01-04 18:47:24 +08:00
|
|
|
<h4 class="ui top attached header">{{ctx.Locale.Tr "repo.quick_guide"}}</h4>
|
2022-03-29 11:21:30 +08:00
|
|
|
<div class="ui attached guide table segment empty-repo-guide">
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="item">
|
2024-10-09 01:04:34 -04:00
|
|
|
<h3>{{ctx.Locale.Tr "repo.clone_this_repo"}} <small>{{ctx.Locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/v2/Git-Basics-Getting-a-Git-Repository"}}</small></h3>
|
2023-04-19 21:40:42 +08:00
|
|
|
|
2023-06-18 12:31:42 +02:00
|
|
|
<div class="repo-button-row">
|
2023-04-19 21:40:42 +08:00
|
|
|
{{if and .CanWriteCode (not .Repository.IsArchived)}}
|
|
|
|
|
<a class="ui small button" href="{{.RepoLink}}/_new/{{.BranchName | PathEscapeSegments}}/">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.editor.new_file"}}
|
2023-04-19 21:40:42 +08:00
|
|
|
</a>
|
|
|
|
|
{{if .RepositoryUploadEnabled}}
|
|
|
|
|
<a class="ui small button" href="{{.RepoLink}}/_upload/{{.BranchName | PathEscapeSegments}}/">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "repo.editor.upload_file"}}
|
2023-04-19 21:40:42 +08:00
|
|
|
</a>
|
|
|
|
|
{{end}}
|
|
|
|
|
{{end}}
|
2024-12-11 14:54:30 +01:00
|
|
|
{{template "repo/clone_buttons" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2015-10-02 19:58:36 -04:00
|
|
|
|
2019-01-23 19:58:38 +01:00
|
|
|
{{if not .Repository.IsArchived}}
|
2024-03-24 17:42:49 +01:00
|
|
|
<div class="divider tw-my-0"></div>
|
2019-01-23 19:58:38 +01:00
|
|
|
|
|
|
|
|
<div class="item">
|
2023-09-25 10:56:50 +02:00
|
|
|
<h3>{{ctx.Locale.Tr "repo.create_new_repo_command"}}</h3>
|
2021-05-07 10:43:41 +02:00
|
|
|
<div class="markup">
|
2025-08-21 20:14:35 +03:00
|
|
|
{{$gitRemoteName := $.SystemConfig.Repository.GitGuideRemoteName.Value ctx}}
|
2019-01-23 19:58:38 +01:00
|
|
|
<pre><code>touch README.md
|
2025-06-02 23:22:43 +08:00
|
|
|
git init{{if ne .Repository.ObjectFormatName "sha1"}} --object-format={{.Repository.ObjectFormatName}}{{end}}{{/* for sha256 repo, it needs to set "object-format" explicitly*/}}
|
2020-07-03 23:22:14 +02: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"
|
2025-08-21 20:14:35 +03:00
|
|
|
git remote add {{$gitRemoteName}} <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span>
|
|
|
|
|
git push -u {{$gitRemoteName}} {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-23 19:58:38 +01:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2023-06-29 14:24:22 +02:00
|
|
|
<div class="divider"></div>
|
2015-10-02 19:58:36 -04:00
|
|
|
|
2019-01-23 19:58:38 +01:00
|
|
|
<div class="item">
|
2023-09-25 10:56:50 +02:00
|
|
|
<h3>{{ctx.Locale.Tr "repo.push_exist_repo"}}</h3>
|
2021-05-07 10:43:41 +02:00
|
|
|
<div class="markup">
|
2025-08-21 20:14:35 +03:00
|
|
|
<pre><code>git remote add {{$gitRemoteName}} <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span>
|
|
|
|
|
git push -u {{$gitRemoteName}} {{.Repository.DefaultBranch}}</code></pre>
|
2019-01-23 19:58:38 +01:00
|
|
|
</div>
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2019-01-23 19:58:38 +01:00
|
|
|
{{end}}
|
2025-01-04 18:47:24 +08:00
|
|
|
</div>
|
|
|
|
|
{{else}}
|
|
|
|
|
<div class="ui segment center">{{ctx.Locale.Tr "repo.empty_message"}}</div>
|
|
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-07-26 00:24:27 -04:00
|
|
|
</div>
|
2015-10-02 19:58:36 -04:00
|
|
|
{{template "base/footer" .}}
|