betweenGo

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.

  1. Obtained the Subversion source from http://subversion.tigris.org/project_packages.html#source-release, compiled it, and put the binaries in my ~/bin directory.
  2. Added the Subversion binaries to my path by adding these lines to my ~/.bash_profile file.

    # 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
  3. 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.
  4. 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/
  5. 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


  • Share/Save/Bookmark

Related posts:

  1. Subversion Branching
  2. Newline problems with Subversion
  3. Implement RSA Authentication Under SSH
  4. Setting up cygwin users and groups
  5. HOWTO Stop Being Prompted For Password in TortoiseSVN

:

2 Comments for this entry

4 Trackbacks / Pingbacks for this entry

Leave a Reply

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!