Skip to content

Commit 958f515

Browse files
committed
Fix instructions
Allows anyone to clone the repo by using the recommended https endpoint
1 parent a49c3d4 commit 958f515

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ This is the sample application for
55
by [Michael Hartl](http://michaelhartl.com/). You can use this reference implementation to help track down errors if you end up having trouble with code in the tutorial. In particular, as a first debugging check I suggest getting the test suite to pass on your local machine:
66

77
$ cd /tmp
8-
$ git clone git@github.com:railstutorial/sample_app_rails_4.git
8+
$ git clone https://github.com/railstutorial/sample_app_rails_4.git
99
$ cd sample_app_rails_4
1010
$ cp config/database.yml.example config/database.yml
1111
$ bundle install
1212
$ bundle exec rake db:migrate
1313
$ bundle exec rake db:test:prepare
1414
$ bundle exec rspec spec/
1515

16-
If the tests don't pass, it means there may be something wrong with your system. If they do pass, then you can debug your code by comparing it with the reference implementation.
16+
If the tests don't pass, it means there may be something wrong with your system. If they do pass, then you can debug your code by comparing it with the reference implementation.

0 commit comments

Comments
 (0)