当我尝试从 MacOS Shell 推送存储库时,出现此错误
致命:远程错误:用户名/密码无效。您可能需要使用您生成的 googlecode.com 密码;请参阅https://code.google.com/hosting/settings
我应该如何为其提供正确的密码?
当我尝试从 MacOS Shell 推送存储库时,出现此错误
致命:远程错误:用户名/密码无效。您可能需要使用您生成的 googlecode.com 密码;请参阅https://code.google.com/hosting/settings
我应该如何为其提供正确的密码?
它应该在您的文件中获取您的凭据~/.netrc
,其中应包括:
machine code.google.com
login your_CodeGoogleCom_Login
password your_CodeGoogle_password
(和chmod go= ~/.netrc
)
确保做到:
git config --global user.name "google.username"
git config --global user.email "google.username@gmail.com"
git remote set-url origin https://code.google.com/p/projectname
(避免在使用文件作为凭据https://google.username@code.google.com/p/projectname
时使用 url ).netrc