Preview an SVN Update
Tue, 08/25/2009 - 21:29.
Since "svn update" is a subset of "svn merge" you can use something like:
svn merge --dry-run -r BASE:HEAD .(Source: http://translocator.ws/2005/10/12/svn-update-dry-run)
The only downside is that 'svn merge' does not quite work like 'svn update' in the sense that you can not run 'svn merge' from outside the workspace. E.g. if I have several workspaces under /tmp/irakli: /tmp/irakli/one and /tmp/irakli/two, I can run:
cd /tmp/
svn update irakli/onewhereas /tmp is not a workspace. We can not do the same with svn merge.




