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

16 lines
523 B
Plaintext
Raw Normal View History

2014-09-02 18:07:02 +05:30
%p
2015-10-24 18:46:33 +05:30
Project #{@old_path_with_namespace} was moved to another location
2014-09-02 18:07:02 +05:30
%p
The project is now located under
2017-09-10 17:25:29 +05:30
= link_to project_url(@project) do
2018-03-27 19:54:05 +05:30
= @project.full_name
2014-09-02 18:07:02 +05:30
%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