76aad9b76e
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
21 lines
1,017 B
Text
21 lines
1,017 B
Text
%h3.page-title
|
|
- if @project.import_failed?
|
|
Import failed. Retry?
|
|
- else
|
|
Import repository
|
|
|
|
%hr
|
|
|
|
= form_for @project, url: namespace_project_import_path(@project.namespace, @project), method: :post, html: { class: 'form-horizontal' } do |f|
|
|
.form-group.import-url-data
|
|
= f.label :import_url, class: 'control-label' do
|
|
%span Import existing git repo
|
|
.col-sm-10
|
|
= f.text_field :import_url, class: 'form-control', placeholder: 'https://github.com/randx/six.git'
|
|
.bs-callout.bs-callout-info
|
|
This URL must be publicly accessible or you can add a username and password like this: https://username:password@gitlab.com/company/project.git.
|
|
%br
|
|
The import will time out after 4 minutes. For big repositories, use a clone/push combination.
|
|
For SVN repositories, check #{link_to "this migrating from SVN doc.", "http://doc.gitlab.com/ce/workflow/migrating_from_svn.html"}
|
|
.form-actions
|
|
= f.submit 'Start import', class: "btn btn-create", tabindex: 4
|