gitlab-org--gitlab-foss/app/views/notify/project_was_moved_email.html.haml
Dmitriy Zaporozhets 1b54a8cdda
Replace deprecated name_with_namespace with full_name in app/views
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-03-05 15:45:35 +02:00

15 lines
523 B
Text

%p
Project #{@old_path_with_namespace} was moved to another location
%p
The project is now located under
= link_to project_url(@project) do
= @project.full_name
%p
To update the remote url in your local repository run (for ssh):
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
git remote set-url origin #{@project.ssh_url_to_repo}
%p
or for http(s):
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
git remote set-url origin #{@project.http_url_to_repo}
%br