: ) wonderful world ( :

the metasyntactic variable

Archive for the ‘svn’ Category

cheat

without comments

SVN cheat sheet.

svnadmin create d:\repository
svn import -m "new project" projdir \
    file:///d:/repository/projname/trunk
svn co file:///d:/repository/projname/trunk localname
svn st
svn add file.ext
svn ci -m "change"
svn mv f1.ext f2.ext
svn info f2.ext
svn diff -r 1 dir\file.ext
svn diff -r 1:2 dir\file.ext
svn -m "create place for tags" mkdir \
    file:///d:/repository/projname/tags 

svnlook tree d:\repository
svn -m "create a tag" copy localname \
    file:///d:/repository/projname/tags/rel-1.0

Written by grault

October 22, 2007 - 2:51 pm at October 22, 2007 - 2:51 pm

Posted in svn