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

_import_form.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 736afa085e838b296dc4b3a9d8e88b132bc133de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.form-group.import-url-data
  = f.label :import_url, class: 'label-light' do
    %span Git repository URL

  = f.text_field :import_url, autocomplete: 'off', class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git'

  .well.prepend-top-20
    %ul
      %li
        The repository must be accessible over <code>http://</code>, <code>https://</code> or <code>git://</code>.
      %li
        If your HTTP repository is not publicly accessible, add authentication information to the URL: <code>https://username:password@gitlab.company.com/group/project.git</code>.
      %li
        The import will time out after #{time_interval_in_words(Gitlab.config.gitlab_shell.git_timeout)}.
        For repositories that take longer, use a clone/push combination.
      %li
        To migrate an SVN repository, check out #{link_to "this document", help_page_path('user/project/import/svn')}.