rails-realworld-example-app
rails-realworld-example-app copied to clipboard
fatal: repository 'https://github.com/gogovan/devise.git/' not found
When I try to make bundle install
I get the following error
fatal: repository 'https://github.com/gogovan/devise.git/' not found
Now it is requesting authentication with github username and password.
@engmsaleh @batmanbury Was this on the rails-5.1
branch? I see from the Gemfile that it's fetching some repos over https
rather than git
protocol, which may cause problems depending on how your local git is configured.
I check repository doesn't exist https://github.com/gogovan/devise
I can confirm that this is an issue with the rails-5.1
branch.
There are two PR's that allegedly fix this issue. I haven't tried them out, however this fixed it for me: Gemfile
Change https://github.com/gothinkster/rails-realworld-example-app/blob/f0e07b02f2120c3f0321cf939f871d0f102a1b4c/Gemfile#L20
to : gem 'devise', git: 'https://github.com/heartcombo/devise.git', branch: 'rails-5.1'
Gemfile.lock
Change https://github.com/gothinkster/rails-realworld-example-app/blob/f0e07b02f2120c3f0321cf939f871d0f102a1b4c/Gemfile.lock#L2-L3
to
`remote: https://github.com/heartcombo/devise.git
revision: 245b1f9de0b3386b7913e14b60ea24f43b77feb0 `