git push returns error 500 (Google Code)

25,872

Solution 1

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.

Solution 2

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.

Share:
25,872
Thomas O
Author by

Thomas O

Student, Ubuntu 10.04 User. Uses Windows XP sometimes. Hates Vista with a passion. Interested in Windows 7, though haven't tried it much. Programs PIC microcontrollers in C and assembly. Favours dsPICs at the moment, but hasn't tried any other microcontroller yet. Prefers Python any day!

Updated on July 09, 2022

Comments

  • Thomas O
    Thomas O almost 2 years

    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.