diff options
author | nagimov <nagim@inbox.ru> | 2013-09-20 02:17:07 +0600 |
---|---|---|
committer | nagimov <nagim@inbox.ru> | 2013-09-20 02:17:07 +0600 |
commit | d7a4bf5fc0c35f461c0d75796070203376d1b538 (patch) | |
tree | f7e4279429656cca519a1d1157b82851609ababe | |
parent | 9c41abf5e0b1c51a16a6c83e4c4f96c3f9f5c586 (diff) | |
download | my_new_personal_website-d7a4bf5fc0c35f461c0d75796070203376d1b538.tar.xz my_new_personal_website-d7a4bf5fc0c35f461c0d75796070203376d1b538.zip |
".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.
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |