Mon 24 Oct 2005
This post is a log of how I personally got Subversion running on Dreamhost using this post.
- Obtained the Subversion source from http://subversion.tigris.org/project_packages.html#source-release, compiled it, and put the binaries in my
~/bindirectory. - Added the Subversion binaries to my path by adding these lines to my
~/.bash_profilefile.
# Set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=”~/bin:${PATH}”
fi
For this change to take effect you either have to relogin or:
$ . ~/.bash_profile - Initialized new subversion repositories. For example:
$ svnadmin create ~/svn/mk
$ svn mkdir \
file:///home/fkim/svn/mk/trunk \
file:///home/fkim/svn/mk/branches \
file:///home/fkim/svn/mk/tags
I am following the suggested way of organizing a Subversion repository. - Imported the files into the subversion repository. For example:
svn import ~/meetingkoreans.com file:///home/fkim/svn/mk/trunk/
svn import ~/meetingkoreans.com svn+ssh://fkim@meetingkoreans.com/home/fkim/svn/mk/trunk/ - Checked the files out. To do this locally:
svn co file:///home/fkim/svn/mk/trunk meetingkoreans.com
To do this remotely:
svn co svn+ssh://fkim@meetingkoreans.com/home/fkim/svn/mk/trunk mkrb
October 31st, 2005 at 10:55 pm
[...] Subversion on Dreamhost [...]
November 1st, 2005 at 8:47 pm
[...] betweenGo » Subversion on Dreamhost (tags: dreamhost subversion svn) [...]
November 8th, 2005 at 3:55 pm
[...] The website is hosted on Dreamhost which we highly recommend. The website runs on Apache 1.3 with FastCGI enabled. The source is also hosted on Dreamhost using Subversion. [...]
April 20th, 2006 at 3:47 pm
It’s my first visit to your website. After just a quick browse, I’m really impressed!
August 1st, 2007 at 8:18 pm
hmm…ok so what if you want anyone to be able to check out the file…say for example can’t i just do svn co http://url.com/to/repository... with out having to login, call it public access if you may…and yes i’m on dreamhost aswell
August 28th, 2007 at 5:58 pm
[...] betweenGo » Subversion on Dreamhost if you compile ssh from latest source, you have to upgrade your dreamhost svn to latest source as well. (tags: svn dreamhost ssh) [...]