summaryrefslogtreecommitdiff
path: root/app/views/notify/project_was_moved_email.html.haml
blob: 87b3ff7f0b323f07cf42be52d564519ebec73aa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%p
  Project #{@old_path_with_namespace} was moved to another location
%p
  The project is now located under
  = link_to namespace_project_url(@project.namespace, @project) do
    = @project.name_with_namespace
%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