Re: how to find what would be updated: status --show-updates not enough
From: Travis <svn_at_castle.fastmail.fm>
Date: 2006-11-01 05:39:30 CET
On Oct 13, 2006, at 3:19 AM, Rob Hubbard wrote:
Some instructions that I wrote for some of my users seem relevant here:
1) How to predict what will happen when you run "svn update"
Run the merge command like this (recursive by default) to see what
svn merge -r BASE:HEAD --dry-run .
To see the changes that update would try to merge, run this command:
svn diff -r BASE:HEAD [list of files and directories]
2) How to diff your local modifications against the latest version in
Without any arguments, "svn diff" is equivalent to "svn diff -r
To see how your changes relate to the latest in the repository, run
svn diff -r HEAD [list of files and directories]
And to see the differences between your baseline and the latest in
svn diff -r BASE:HEAD [list of files and directories]
---------------------------------------------------------------------
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.