From d7a4bf5fc0c35f461c0d75796070203376d1b538 Mon Sep 17 00:00:00 2001 From: nagimov Date: Fri, 20 Sep 2013 02:17:07 +0600 Subject: [PATCH] ".git" added to sample string with SSH repository URL Octopress does not work with a repo URL like a "git@github.com:your_username/your_username.github.io" ("ERROR: repository not found" error appears). It is necessary to add ".git" to the end of this line. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index d7a6931..0d5ec3b 100644 --- a/Rakefile +++ b/Rakefile @@ -307,7 +307,7 @@ task :setup_github_pages, :repo do |t, args| repo_url = args.repo else puts "Enter the read/write url for your repository" - puts "(For example, 'git@github.com:your_username/your_username.github.io)" + puts "(For example, 'git@github.com:your_username/your_username.github.io.git)" puts " or 'https://github.com/your_username/your_username.github.io')" repo_url = get_stdin("Repository url: ") end