[categories] [index] [all (552)] [latest]
create the repository
$ svnadmin create /Users/nst/Library/SVNRep --fs-type fsfs
create the initial file tree
$ mkdir /tmp/svn_layout
$ mkdir /tmp/svn_layout/branches
$ mkdir /tmp/svn_layout/tags
$ mkdir /tmp/svn_layout/trunk
import the initial file tree
$ svn import /tmp/svn_layout file:///Users/nst/Library/SVNRep -m "initial import"
import a project
$ svn import LifeLine file:///Users/nst/Library/SVNRep/trunk/LifeLine -m "LifeLine initial import"
list the projects
$ svn list file:///Users/nst/Library/SVNRep/trunk/
get a project
$ svn checkout file:///Users/nst/Library/SVNRep/trunk/LifeLine LifeLine
display logs
$ pwd
/Users/nst/Documents/Projects/LifeLine
$ svn log
------------------------------------------------------------------------
r2 | nst | 2007-06-03 16:06:47 +0200 (Dim, 03 jui 2007) | 1 line
LifeLine initial import
------------------------------------------------------------------------
for the rest
See the svnbook.