I created a new project with a git repo, created and edited a wiki page via the web interface.
Now I'd like to edit the wiki page offline and to push my commits to the Google Code Hosting repo when I get back online. I created a ~/.netrc file with the following line: machine code.google.com login [email protected] <my-generated-google-code-password> Then I ran git clone https://code.google.com/p/project-name.wiki/ (successfully), edited the .wiki file, added it to the cache with git add, and committed the changes. But when I try to git push the commit back to the Google Code repo, the following error messages appears: fatal: remote error: Invalid username/password. You may need to use your generated googlecode.com password; see https://code.google.com/hosting/settings I tried running git push, git push origin and git push origin master. All result in the same error. The password in the .netrc file still matches the password displayed at https://code.google.com/hosting/settings. I'm using git version 1.7.0.4 under Ubuntu 10.04. The local repository is configured as follows: $ git config user.name alexkon $ git config user.email [email protected] I'm new to git so this might be a silly error due to my ignorance. Any hints or pointers will be really appreciated. -- Alexander -- You received this message because you are subscribed to the Google Groups "Project Hosting on Google Code" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-code-hosting?hl=en.

