如果您使用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
东西。
现在会好的。