Skip to content

Commit bcbc95b

Browse files
committed
Example repo URL - see Github issue 516
1 parent f5b6df5 commit bcbc95b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Rakefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,9 @@ task :setup_github_pages, :repo do |t, args|
299299
if args.repo
300300
repo_url = args.repo
301301
else
302-
repo_url = get_stdin("Enter the read/write url for your repository: ")
302+
puts "Enter the read/write url for your repository"
303+
puts "(For example, '[email protected]:your_username/your_username.github.com)"
304+
repo_url = get_stdin("Repository url: ")
303305
end
304306
user = repo_url.match(/:([^\/]+)/)[1]
305307
branch = (repo_url.match(/\/[\w-]+.github.com/).nil?) ? 'gh-pages' : 'master'

0 commit comments

Comments
 (0)