Reputation: 6220
I'm trying the following sequence of standard commands:
git clone https://code.google.com/p/steambmc/
cd steambmc
[made changes]
git commit -a
[added commit message]
git push
I've set up my username/password in .netrc
.
When I try these, the first two succeed, but the last one appears to fail:
fatal: unable to access 'https://code.google.com/p/steambmc/': The requested URL returned error: 500
I've also tried git://
(which just hangs) and http://
(which has the same error.)
git
version is 1.8.3.4
on Ubuntu Precise.
Upvotes: 3
Views: 31528
Reputation: 113
Edit .git\config, change the url from yourname@https://code.google.com/p/xyz/ to https://code.google.com/p/xyz/. When you push to it, just input your username and password, now it works well.
Upvotes: 4
Reputation: 9335
Double check your _netrc file or your authentication for the repo. I found if the auth isn't setup correctly Google seems to return 500.
Upvotes: 1