如果code.google.com
用于托管Subversion存储库。
你知道下面的事吧?
If you plan to make changes, use this command to check out the code as yourself using HTTPS:
# Project members authenticate over HTTPS to allow committing changes.
svn checkout https://.../svn/trunk/ user-...
When prompted, enter your generated googlecode.com password.
Use this command to anonymously check out the latest project source code:
# Non-members may check out a read-only working copy anonymously over HTTP.
svn checkout http://.../svn/trunk/ ...-read-only
您刚才提到的错误是您正在使用Non-members may check out a read-only working copy anonymously over HTTP
状态。因此,到目前为止,您无法执行任何操作。
你必须使用Project members authenticate over HTTPS to allow committing changes
东西。
现在会好起来的。
git
?