|
SVN
Aug 11, 2009 22:05:46 GMT -5
Post by ZF on Aug 11, 2009 22:05:46 GMT -5
Creating local svn: cd <SVN admin dir> svnadmin create <projectname> svn import <projectpath> file:///<SVN admin dir>/<projectname>/trunk -m "Initial import of project" svn co file:///<SVN admin dir>/<projectname>/trunk <workingdir>
|
|
|
SVN
Aug 19, 2009 6:19:36 GMT -5
Post by ZF on Aug 19, 2009 6:19:36 GMT -5
To revert from revision 1000 to revision 999
svn merge -r 1000:999 <file or dir>
If multiple revisions are involved, it is necessary to revert the most recent ones first.
|
|
|
SVN
Apr 7, 2010 23:24:06 GMT -5
Post by ZF on Apr 7, 2010 23:24:06 GMT -5
|
|