I have the following line in my GemFile :
gem 'rails', :git => 'git://github.com/rails/rails.git'
I get the following error:
Fetching git://github.com/rails/rails.git
fatal: I don't handle protocol ''git'
Git error: command `git clone 'git://github.com/rails/rails.git'...
but when I run gem install 'rails'
it works fine.
basically when running the clone command, bundler adds the single quotes around the git:// address which throws the error.
I am working on windows. Any ideas why I am getting this error?
Cheers
Try this instead in your Gemfile
:
gem 'rails', :git => "https://github.com/rails/rails.git"
git://
can sometimes be blocked by firewalls. Though in your case that's probably not the issue. Try double quotes instead.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With