SVN+SSH Command not found on Mac Server
I have just setup my mac server for SVN as listed here http://www.scottboms.com/2008/10/macsvnsshserver/
Everything went alright .... im fairly new at S开发者_开发技巧VN so no doubt i have messed something up.
But when i run svn+ssh://USERNAME@IP_OR_HOSTNAME/test_proj from either my server or my workstation, i get the following error:
svn+ssh: command not found
If anyone has any advice, that would be great.
Cheers,
svn+ssh is a protocol, not a program. You should run (for instance):
svn info --username USERNAME svn+ssh://HOSTNAME/path/to/repos/test_proj
精彩评论