debian-mirror-gitlab/app/views/projects/mirrors/_instructions.html.haml

15 lines
1.3 KiB
Text
Raw Normal View History

2020-07-28 23:09:34 +05:30
.account-well.gl-mt-3.gl-mb-3
2018-10-15 14:42:47 +05:30
%ul
%li
2020-10-24 23:57:45 +05:30
= html_escape(_('The repository must be accessible over %{code_open}http://%{code_close},
%{code_open}https://%{code_close}, %{code_open}ssh://%{code_close} or %{code_open}git://%{code_close}.')) % { code_open: '<code>'.html_safe, code_close: '</code>'.html_safe }
2021-03-08 18:12:59 +05:30
%li= html_escape(_('When using the %{code_open}http://%{code_close} or %{code_open}https://%{code_close} protocols, provide the exact URL to the repository. HTTP redirects will not be followed.')) % { code_open: '<code>'.html_safe, code_close: '</code>'.html_safe }
2020-10-24 23:57:45 +05:30
%li= html_escape(_('Include the username in the URL if required: %{code_open}https://username@gitlab.company.com/group/project.git%{code_close}.')) % { code_open: '<code>'.html_safe, code_close: '</code>'.html_safe }
2018-11-20 20:47:30 +05:30
%li
- minutes = Gitlab.config.gitlab_shell.git_timeout / 60
= _("The update action will time out after %{number_of_minutes} minutes. For big repositories, use a clone/push combination.") % { number_of_minutes: minutes }
2019-07-31 22:56:46 +05:30
%li= mirror_lfs_sync_message
2018-11-18 11:00:15 +05:30
%li
2021-03-08 18:12:59 +05:30
= _('In case of pull mirroring, your user will be the author of all events in the activity feed that are the result of an update,
2018-11-18 11:00:15 +05:30
like new branches being created or new commits being pushed to existing branches.')