
du -sk * | sort -nr
svn ls http://torsvn.newstep.local/svn
svn co http://torsvn.newstep.local/svn/main/branches/mdmp

ln -s trunk load

svn co http..../trunk someDirName
ln -s someDirName load

if you run "svn status -u -v", it will tell you what are your local modifications and also print an asterisk on each file that was changed in the repository in the mean time


svn status -u
this will only print files that are changed by you, changed in repository or both


svn status -u // will show all diff ( * - what was change in repository, M- what I changed, A - Waht I added )
		// this one that have M and * will be merged 
svn status -v
svn help update

svn -diff -r HEAD

svn update

// to get old rev
svn log http://torsvn.newstep.local/svn/main/trunk/cse | more

tordev01:/home/elazaris: svn log http://torsvn.newstep.local/svn/main/trunk/cse | more
------------------------------------------------------------------------
r324 | elazaris | 2007-06-29 15:39:40 -0400 (Fri, 29 Jun 2007) | 1 line

D0:
------------------------------------------------------------------------
r323 | zmilojevic | 2007-06-29 15:00:49 -0400 (Fri, 29 Jun 2007) | 1 line

D0: stability fix for earlier checkin
------------------------------------------------------------------------
r319 | cwells | 2007-06-29 14:30:24 -0400 (Fri, 29 Jun 2007) | 1 line

D0: add some unit tests for DOmain Rectification
------------------------------------------------------------------------

let say I want 319

svn co http://torsvn.newstep.local/svn/main/trunk/cse -r 315


svn info ( check current version )

svn -r HEAD diff libCseSession/SessionDeviceSet.cpp
svn -u status
svn update -r 4060


// what revision for build
csn35build:/tmp/temp/ocs$ svn log --limit 1 -v http://torsvn/svn/main/builds/R3_5_OCS/R3_5_OCS-8
------------------------------------------------------------------------
r4093 | build.manager | 2007-10-24 04:09:39 -0400 (Wed, 24 Oct 2007) | 1 line
Changed paths:
   A /main/builds/R3_5_OCS/R3_5_OCS-8 (from /main/branches/R3_5_OCS:4092)
   M /main/builds/R3_5_OCS/R3_5_OCS-8/csn/util/src/schema-config.xml
 
D0: tagging for build R3_5_OCS-8
------------------------------------------------------------------------



// viewsvn build
http://torsvn.newstep.local/viewvc/main/builds/R3_5_OCS/R3_5_OCS-8/



// checkout revision

#svn co -r 4093 http://torsvn.newstep.local/svn/main/branches/R3_5_OCS .
you can do it on specific components like CSE, ... by specifying complete path for that component:
#svn co -r 4093 http://torsvn.newstep.local/svn/main/branches/R3_5_OCS/cse cse

The correct URL is

   http://torsvn.newstep.local/svn/...

You can tell which URL is being used with 'svn info' command.


svn merge sourceURL1[@N] sourceURL2[@M] [WCPATH]

