2015-10-02 23:58:36 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content 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}}
|
2024-03-04 03:33:20 +00:00
|
|
|
<div class="ui warning message tw-text-center">
|
2023-04-26 14:46:26 +00:00
|
|
|
{{if .Repository.ArchivedUnix.IsZero}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.archive.title"}}
|
2023-04-26 14:46:26 +00:00
|
|
|
{{else}}
|
2024-02-22 17:02:33 +00:00
|
|
|
{{ctx.Locale.Tr "repo.archive.title_date" (DateTime "long" .Repository.ArchivedUnix)}}
|
2023-04-26 14:46:26 +00:00
|
|
|
{{end}}
|
2019-01-23 18:58:38 +00:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2021-11-22 22:32:16 +00:00
|
|
|
{{if .Repository.IsBroken}}
|
|
|
|
<div class="ui segment center">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.broken_message"}}
|
2021-11-22 22:32:16 +00:00
|
|
|
</div>
|
|
|
|
{{else if .CanWriteCode}}
|
2015-12-07 22:30:52 +00:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.quick_guide"}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</h4>
|
2022-03-29 03:21:30 +00:00
|
|
|
<div class="ui attached guide table segment empty-repo-guide">
|
2015-12-07 22:30:52 +00:00
|
|
|
<div class="item">
|
2024-03-10 08:51:19 +00:00
|
|
|
<h3>{{ctx.Locale.Tr "repo.clone_this_repo"}} <small>{{ctx.Locale.Tr "repo.clone_helper" "http://git-scm.com/book/en/Git-Basics-Getting-a-Git-Repository"}}</small></h3>
|
2023-04-19 13:40:42 +00:00
|
|
|
|
2023-06-18 10:31:42 +00:00
|
|
|
<div class="repo-button-row">
|
2023-04-19 13:40:42 +00:00
|
|
|
{{if and .CanWriteCode (not .Repository.IsArchived)}}
|
|
|
|
<a class="ui small button" href="{{.RepoLink}}/_new/{{.BranchName | PathEscapeSegments}}/">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.new_file"}}
|
2023-04-19 13:40:42 +00:00
|
|
|
</a>
|
|
|
|
{{if .RepositoryUploadEnabled}}
|
|
|
|
<a class="ui small button" href="{{.RepoLink}}/_upload/{{.BranchName | PathEscapeSegments}}/">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.editor.upload_file"}}
|
2023-04-19 13:40:42 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2024-03-17 12:40:42 +00:00
|
|
|
<div class="clone-panel ui action small input tw-flex-1">
|
2023-04-19 13:40:42 +00:00
|
|
|
{{template "repo/clone_buttons" .}}
|
|
|
|
</div>
|
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}}
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 16:42:49 +00:00
|
|
|
<div class="divider tw-my-0"></div>
|
2019-01-23 18:58:38 +00:00
|
|
|
|
|
|
|
<div class="item">
|
2023-09-25 08:56:50 +00:00
|
|
|
<h3>{{ctx.Locale.Tr "repo.create_new_repo_command"}}</h3>
|
2021-05-07 08:43:41 +00:00
|
|
|
<div class="markup">
|
2019-01-23 18:58:38 +00:00
|
|
|
<pre><code>touch README.md
|
2014-07-26 04:24:27 +00:00
|
|
|
git init
|
2020-07-03 21:22:14 +00:00
|
|
|
{{if ne .Repository.DefaultBranch "master"}}git checkout -b {{.Repository.DefaultBranch}}{{end}}
|
2014-07-26 04:24:27 +00:00
|
|
|
git add README.md
|
|
|
|
git commit -m "first commit"
|
2022-08-02 02:52:05 +00:00
|
|
|
git remote add origin <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</span>
|
2020-06-17 20:53:55 +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>
|
2023-06-29 12:24:22 +00:00
|
|
|
<div class="divider"></div>
|
2015-10-02 23:58:36 +00:00
|
|
|
|
2019-01-23 18:58:38 +00:00
|
|
|
<div class="item">
|
2023-09-25 08:56:50 +00:00
|
|
|
<h3>{{ctx.Locale.Tr "repo.push_exist_repo"}}</h3>
|
2021-05-07 08:43:41 +00:00
|
|
|
<div class="markup">
|
2022-08-02 02:52:05 +00:00
|
|
|
<pre><code>git remote add origin <span class="js-clone-url">{{$.CloneButtonOriginLink.HTTPS}}</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">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "repo.empty_message"}}
|
2017-03-18 10:59:07 +00:00
|
|
|
</div>
|
2015-12-07 22:30:52 +00:00
|
|
|
{{end}}
|
2023-04-26 03:28:37 +00:00
|
|
|
{{template "repo/clone_script" .}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-26 04:24:27 +00:00
|
|
|
</div>
|
2015-10-02 23:58:36 +00:00
|
|
|
{{template "base/footer" .}}
|