mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-18 00:56:41 +10:00
Conflicts remaining: - app/controllers/groups/group_members_controller.rb - app/controllers/projects/project_members_controller.rb - app/models/ability.rb - app/models/member.rb - app/models/project.rb
29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
.form-group.import-url-data
|
|
= f.label :import_url, class: 'control-label' do
|
|
%span Git repository URL
|
|
.col-sm-10
|
|
= f.text_field :import_url, 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 4 minutes. For big repositories, use a clone/push combination.
|
|
%li
|
|
To migrate an SVN repository, check out #{link_to "this document", "http://doc.gitlab.com/ce/workflow/importing/migrating_from_svn.html"}.
|
|
|
|
.form-group
|
|
.col-sm-offset-2.col-sm-10
|
|
.checkbox
|
|
= f.label :mirror do
|
|
= f.check_box :mirror
|
|
%strong
|
|
Mirror repository
|
|
.help-block
|
|
Automatically update this project's branches and tags from the upstream repository every hour.
|
|
|
|
= f.hidden_field :mirror_user_id, value: current_user.id
|