I wanted to setup SVN repository on a network machine running Mac OSX 10.4. I downloaded and installed subversion from HERE.
I installed the package, and in order to call the Subversion commands from every directory, i followed the following instructions:
- Open Terminal.
Enter following command.
$ pico .bash_profile
Add the following line to the text file:
export PATH=/opt/subversion/bin/:$PATH"
Now hit Control-X, then confirm saving the file with 'y', followed by return.
After this, i was able to successfully create an svn repository on a remote machine. Now i want to access that repository using Xcode. But i think i'm missing something because i'm unable to access the repository using "svn+ssh://..." URL. There are many online articles that talk about svnserve and ssh, but i don't get. I'll appreciate if anyone can explain to me what I'm missing, and the logic behind that.
With Mac OS X 10.5.x, the SVN environment is already setup, so the SVN repository can be accessed using "svn+ssh://..." URL. But i want to use a remote machine running Mac OS X 10.4.x for my SVN repository, and that's where I'm stuck.
Any help in this regard is greatly appreciated.
p.s. I'm new to this SVN, SSH, SCM stuff