debian-mirror-gitlab/app/views/notify/project_was_moved_email.html.haml

16 lines
535 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
%p
2015-04-26 12:48:37 +05:30
Project was moved to another location
2014-09-02 18:07:02 +05:30
%p
The project is now located under
2015-04-26 12:48:37 +05:30
= link_to namespace_project_url(@project.namespace, @project) do
2014-09-02 18:07:02 +05:30
= @project.name_with_namespace
%p
To update the remote url in your local repository run (for ssh):
2015-04-26 12:48:37 +05:30
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
2014-09-02 18:07:02 +05:30
git remote set-url origin #{@project.ssh_url_to_repo}
%p
or for http(s):
2015-04-26 12:48:37 +05:30
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
2014-09-02 18:07:02 +05:30
git remote set-url origin #{@project.http_url_to_repo}
%br