diff options
-rw-r--r-- | app/views/notify/project_was_moved_email.html.haml | 4 | ||||
-rw-r--r-- | app/views/notify/project_was_moved_email.text.erb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/notify/project_was_moved_email.html.haml b/app/views/notify/project_was_moved_email.html.haml index 87b3ff7f0b3..da6e480264b 100644 --- a/app/views/notify/project_was_moved_email.html.haml +++ b/app/views/notify/project_was_moved_email.html.haml @@ -5,11 +5,11 @@ = 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): + 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): + 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 diff --git a/app/views/notify/project_was_moved_email.text.erb b/app/views/notify/project_was_moved_email.text.erb index b2c5f71e465..2ca706f21b8 100644 --- a/app/views/notify/project_was_moved_email.text.erb +++ b/app/views/notify/project_was_moved_email.text.erb @@ -4,7 +4,7 @@ The project is now located under <%= namespace_project_url(@project.namespace, @project) %> -To update the remote url in your local repository run (for ssh): +To update the remote URL in your local repository run (for SSH): git remote set-url origin <%= @project.ssh_url_to_repo %> -or for http(s): +or for HTTP(S): git remote set-url origin <%= @project.http_url_to_repo %> |