diff --git a/app/models/gollum_wiki.rb b/app/models/gollum_wiki.rb
index 8168347926bd41758c0ca3ff9156ba6e13d0f7ec..d1edbab4533afab1e846355c15f275a2560f12b4 100644
--- a/app/models/gollum_wiki.rb
+++ b/app/models/gollum_wiki.rb
@@ -16,6 +16,10 @@ class GollumWiki
     @user = user
   end
 
+  def path
+    @project.path + '.wiki'
+  end
+
   def path_with_namespace
     @project.path_with_namespace + ".wiki"
   end
diff --git a/app/views/wikis/git_access.html.haml b/app/views/wikis/git_access.html.haml
index 58c8aa06acaf09bae9de13e49eec60bf20260430..462d483fd858514f8c956f6b551c46f31b1b2829 100644
--- a/app/views/wikis/git_access.html.haml
+++ b/app/views/wikis/git_access.html.haml
@@ -24,8 +24,8 @@
       %legend Clone Your Wiki:
       %pre.dark
         :preserve
-          git clone #{@gollum_wiki.path_with_namespace}.git
-          cd #{@gollum_wiki.path_with_namespace}
+          git clone #{@gollum_wiki.ssh_url_to_repo}
+          cd #{@gollum_wiki.path}
 
       %legend Start Gollum And Edit Locally:
       %pre.dark