Archive for the 'Subversion' Category

 

Get list of subversion (svn) changes in a branch

Oct 08, 2013 in Subversion

From: http://stackoverflow.com/questions/3935780/how-do-i-find-the-creation-time-date-stamp-of-a-subversion-directory-node

svn log --stop-on-copy [--quiet] [-v] http://[path-omitted]/[directory]

Getting subversion history by date range ..

Aug 29, 2012 in Config Manage, Subversion

See http://stackoverflow.com/questions/141599/how-do-you-get-a-list-of-changes-from-a-subversion-repository-by-date-range

svn log [url] -r {2008-09-19}:{2008-09-26} | tee svnlog.log

Subversion resolve ..

Oct 12, 2011 in Subversion

From :

http://stackoverflow.com/questions/738367/why-am-i-getting-tree-conflicts-in-subversion


svn resolve --accept working -R .

Undo a commit in subversion (revert a change, restore deleted folder) ..

Dec 01, 2010 in Subversion

svn delete blah

svn commit -m done
change 2212

(oops!)

2 ways:

1. with a working copy:

cd blah

svn merge -c -2212 http://mysub.server.com/svn/blah

See for more details:

http://svnbook.red-bean.com/en/1.5/svn.branchmerge.basicmerging.html#svn.branchmerge.basicmerging.undo

2. without a working copy:

svn copy -r2212 -m ‘restore’ http://mysub.server.com/svn/blah@2212
http://mysub.server.com/svn/

Note that the target folder should be “above” the folder you are trying to restore.

Subversion update dry-run ..

Sep 16, 2009 in Subversion

From http://justaddwater.dk/2008/04/29/how-to-make-a-dry-run-with-svn-update/

svn merge –dry-run -r BASE:HEAD .

Also:

svn status -u

This command will not show conflicts .