Using SVN
Here is a nice reference link to some of the commands.
svn update brings changes from the repository into your working copy
A – added
G – merged
U – updated
C – conflict
svn revert reverts any local changes to a file or directory and resolves any conflicted states.
svn log Display commit log messages
svn merge Merging is where you submit your code in one release and you want it prop’d to another.
svn commit ….
Committed revision 1001.
svn merge –dry-run -r 1000:1001 /usr/svn/product1/trunk/main/product1a
svn merge -r 1000:1001 /usr/svn/product1/trunk/main/product1a


