rails-realworld-example-app icon indicating copy to clipboard operation
rails-realworld-example-app copied to clipboard

fatal: repository 'https://github.com/gogovan/devise.git/' not found

Open engmsaleh opened this issue 6 years ago • 5 comments

When I try to make bundle install I get the following error fatal: repository 'https://github.com/gogovan/devise.git/' not found

engmsaleh avatar Jun 03 '18 12:06 engmsaleh

Now it is requesting authentication with github username and password.

batmanbury avatar Oct 11 '18 16:10 batmanbury

@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.

andyw8 avatar Apr 04 '19 22:04 andyw8

I check repository doesn't exist https://github.com/gogovan/devise

satrioaw avatar Apr 07 '20 17:04 satrioaw

I can confirm that this is an issue with the rails-5.1 branch.

delatbabel avatar Oct 10 '20 04:10 delatbabel

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 `

bjoernls avatar Jun 28 '21 17:06 bjoernls