32d121343d
See https://gitlab.com/gitlab-org/gitlab-ee/issues/3839 Conflicts: app/assets/javascripts/projects/project_new.js app/views/shared/_import_form.html.haml ee/app/controllers/ee/projects_controller.rb ee/spec/features/projects/new_project_spec.rb locale/gitlab.pot
22 lines
877 B
Text
22 lines
877 B
Text
- ci_cd_only = local_assigns.fetch(:ci_cd_only, false)
|
|
|
|
.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', required: true
|
|
|
|
.well.prepend-top-20
|
|
%ul
|
|
%li
|
|
= _('The repository must be accessible over <code>http://</code>, <code>https://</code> or <code>git://</code>.').html_safe
|
|
%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>.').html_safe
|
|
%li
|
|
= import_will_timeout_message(ci_cd_only)
|
|
%li
|
|
= import_svn_message(ci_cd_only)
|
|
|
|
-# EE-specific start
|
|
-# EE-specific end
|