debian-mirror-gitlab/app/views/projects/empty.html.haml

87 lines
3.8 KiB
Text
Raw Normal View History

- @no_container = true
2018-03-17 18:26:18 +05:30
- breadcrumb_title "Details"
2017-09-10 17:25:29 +05:30
= render partial: 'flash_messages', locals: { project: @project }
2015-04-26 12:48:37 +05:30
2014-09-02 18:07:02 +05:30
= render "home_panel"
2018-03-27 19:54:05 +05:30
.project-empty-note-panel
%div{ class: [container_class, ("limit-container-width-sm" unless fluid_layout)] }
.prepend-top-20
%h4
= _('The repository for this project is empty')
- if @project.can_current_user_push_code?
%p
- link_to_cli = link_to _('command line instructions'), '#repo-command-line-instructions'
= _('If you already have files you can push them using the %{link_to_cli} below.').html_safe % { link_to_cli: link_to_cli }
%p
%em
- link_to_protected_branches = link_to _('Learn more about protected branches'), help_page_path('user/project/protected_branches')
= _('Note that the master branch is automatically protected. %{link_to_protected_branches}').html_safe % { link_to_protected_branches: link_to_protected_branches }
%hr
%p
- link_to_auto_devops_settings = link_to(s_('AutoDevOps|enable Auto DevOps (Beta)'), project_settings_ci_cd_path(@project, anchor: 'js-general-pipeline-settings'))
- link_to_add_kubernetes_cluster = link_to(s_('AutoDevOps|add a Kubernetes cluster'), new_project_cluster_path(@project))
= s_('AutoDevOps|You can automatically build and test your application if you %{link_to_auto_devops_settings} for this project. You can automatically deploy it as well, if you %{link_to_add_kubernetes_cluster}.').html_safe % { link_to_auto_devops_settings: link_to_auto_devops_settings, link_to_add_kubernetes_cluster: link_to_add_kubernetes_cluster }
%hr
2018-03-17 18:26:18 +05:30
%p
2018-03-27 19:54:05 +05:30
= _('Otherwise it is recommended you start with one of the options below.')
.prepend-top-20
%nav.project-stats{ class: container_class }
= render 'stat_anchor_list', anchors: @project.empty_repo_statistics_anchors
= render 'stat_anchor_list', anchors: @project.empty_repo_statistics_buttons
2018-03-17 18:26:18 +05:30
2016-06-02 11:05:42 +05:30
- if can?(current_user, :push_code, @project)
2018-03-27 19:54:05 +05:30
%div{ class: [container_class, ("limit-container-width-sm" unless fluid_layout)] }
.prepend-top-20
.empty_wrapper
2018-03-27 19:54:05 +05:30
%h3#repo-command-line-instructions.page-title-empty
Command line instructions
2017-08-17 22:00:37 +05:30
.git-empty
%fieldset
%h5 Git global setup
%pre.light-well
:preserve
git config --global user.name "#{h git_user_name}"
git config --global user.email "#{h git_user_email}"
2014-09-02 18:07:02 +05:30
%fieldset
%h5 Create a new repository
%pre.light-well
:preserve
git clone #{ content_tag(:span, default_url_to_repo, class: 'clone')}
cd #{h @project.path}
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
2014-09-02 18:07:02 +05:30
%fieldset
2017-08-17 22:00:37 +05:30
%h5 Existing folder
%pre.light-well
:preserve
cd existing_folder
git init
git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'clone')}
git add .
2017-08-17 22:00:37 +05:30
git commit -m "Initial commit"
git push -u origin master
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
%fieldset
%h5 Existing Git repository
%pre.light-well
:preserve
cd existing_repo
2018-03-17 18:26:18 +05:30
git remote rename origin old-origin
2017-08-17 22:00:37 +05:30
git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'clone')}
git push -u origin --all
git push -u origin --tags
- if can? current_user, :remove_project, @project
.prepend-top-20
2018-03-17 18:26:18 +05:30
= link_to 'Remove project', [@project.namespace.becomes(Namespace), @project], data: { confirm: remove_project_message(@project)}, method: :delete, class: "btn btn-inverted btn-remove pull-right"