debian-mirror-gitlab/app/views/shared/_import_form.html.haml

17 lines
911 B
Text
Raw Normal View History

2015-11-26 14:37:03 +05:30
.form-group.import-url-data
= f.label :import_url, class: 'control-label' do
%span Git repository URL
.col-sm-10
2017-08-17 22:00:37 +05:30
= f.text_field :import_url, autocomplete: 'off', class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git'
2015-11-26 14:37:03 +05:30
.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
2016-04-02 18:10:28 +05:30
The import will time out after 15 minutes. For repositories that take longer, use a clone/push combination.
2015-11-26 14:37:03 +05:30
%li
2017-08-17 22:00:37 +05:30
To migrate an SVN repository, check out #{link_to "this document", help_page_path('workflow/importing/migrating_from_svn')}.