gitlabhq/app/views/notify/project_was_moved_email.html.haml
2013-03-12 10:46:04 +02:00

12 lines
348 B
Plaintext

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