I have a godaddy shared server with ssh enabled. Is it possible to install svn via ssh? If not has anyone found any other ways?
|
feedback
|
migrated from stackoverflow.com Oct 10 '10 at 19:16
This question came from our site for professional and enthusiast programmers.
|
If it isn't already there ( I realize that's a pretty broad sketch, but first you'll want to check that the tools are there, then do more specific research on the installation itself. | |||
feedback
|
|
You can definitively install svn. The question is then how would you access that SVN afterwards. There are three basic ways to access svn (taken from the SVN manual):
Choosing between the three will depend on what you can actually change on the shared server. I would start by trying apache + mod_dav_svn, as it is the most flexible. This will only work if you can load the mod_dav_svn module for apache. Next try svnserver. You might not be able to use svnserver over ssh, as it would require everyone to have a different account on the shared server which might not be possible in your case. Check this link for further information access options. | |||
|
feedback
|