On Tue, May 08, 2012 at 05:33:15PM +0300, anatoly techtonik wrote:
> Hi,
> 
> Mercurial has a very convenient command "hg incoming" which is
> basically "what's new" for incoming changes. Will it be nice to add
> the same capability to Subversion? `svn log -r BASE:HEAD' works ok,
> but not everybody proficient enough to know about it.
> 
> Please, CC.
> --
> anatoly t.

Maybe you want "svn status -u" ?

Or if you want to see the changes in detail, try:
  svn diff --old=. --new=^/trunk
This command assumes you're in a working copy of "/trunk".
Adjust as necessary if your working copy came from a different path
in the repository. On Unix-like systems this alternative will work
in the root of any working copy: svn diff --old=. --new="`pwd`@HEAD"

Reply via email to