BigW Consortium Gitlab

project_was_moved_email.html.haml 563 Bytes
Newer Older
1
%p
2
  Project #{@old_path_with_namespace} was moved to another location
3 4
%p
  The project is now located under
Vinnie Okada committed
5
  = link_to namespace_project_url(@project.namespace, @project) do
6 7
    = @project.name_with_namespace
%p
8
  To update the remote url in your local repository run (for ssh):
9
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
10
  git remote set-url origin #{@project.ssh_url_to_repo}
11 12
%p
  or for http(s):
13
%p{ style: "background: #f5f5f5; padding:10px; border:1px solid #ddd" }
14
  git remote set-url origin #{@project.http_url_to_repo}
15
%br