Welcome to mirror list, hosted at ThFree Co, Russian Federation.

empty.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9b6b3979680eb4452adfa9e563f8aae96e68743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
- @content_class = "limit-container-width" unless fluid_layout
- breadcrumb_title _("Details")

= render partial: 'flash_messages', locals: { project: @project }

%div{ class: [("limit-container-width" unless fluid_layout)] }
  = render "home_panel"

  %h4.prepend-top-0.append-bottom-8
    = _('The repository for this project is empty')

  - if @project.can_current_user_push_code?
    %p.append-bottom-0
      = _('You can create files directly in GitLab using one of the following options.')

  .project-buttons.qa-quick-actions
    = render 'stat_anchor_list', anchors: @project.empty_repo_statistics_buttons

  - if can?(current_user, :push_code, @project)
    .empty-wrapper.prepend-top-32
      %h3#repo-command-line-instructions.page-title-empty
        = _('Command line instructions')
      %p
        = _('You can also upload existing files from your computer using the instructions below.')
      .git-empty.js-git-empty
        %fieldset
          %h5= _('Git global setup')
          %pre.bg-light
            :preserve
              git config --global user.name "#{h git_user_name}"
              git config --global user.email "#{h git_user_email}"

        %fieldset
          %h5= _('Create a new repository')
          %pre.bg-light
            :preserve
              git clone #{ content_tag(:span, default_url_to_repo, class: 'js-clone')}
              cd #{h @project.path}
              touch README.md
              git add README.md
              git commit -m "add README"
            - if @project.can_current_user_push_to_default_branch?
              %span><
                git push -u origin master

        %fieldset
          %h5= _('Push an existing folder')
          %pre.bg-light
            :preserve
              cd existing_folder
              git init
              git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'js-clone')}
              git add .
              git commit -m "Initial commit"
            - if @project.can_current_user_push_to_default_branch?
              %span><
                git push -u origin master

        %fieldset
          %h5= _('Push an existing Git repository')
          %pre.bg-light
            :preserve
              cd existing_repo
              git remote rename origin old-origin
              git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'js-clone')}
            - if @project.can_current_user_push_to_default_branch?
              %span><
                git push -u origin --all
                git push -u origin --tags