Subversion on Dreamhost
by Frank Kim on Oct.24, 2005, under Subversion
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
Related posts:
2 Comments for this entry
4 Trackbacks / Pingbacks for this entry
-
-
The Unkaizened Life » Blog Archive » links for 2005-10-26
November 1st, 2005 on 8:47 pm[...] betweenGo » Subversion on Dreamhost (tags: dreamhost subversion svn) [...]
-
betweenGo » MeetingKoreans.com launched using Ruby on Rails
November 8th, 2005 on 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. [...]
-
» links for 2007-07-24 | Paul Cowles
August 28th, 2007 on 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) [...]
April 20th, 2006 on 3:47 pm
It’s my first visit to your website. After just a quick browse, I’m really impressed!
August 1st, 2007 on 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