views:

34

answers:

2

The perforce command:

p4 sync -n

will display the results of the sync (update in subversion) without actually performing the sync.

I've been looking in the svn help pages and googling around for a tag/command in subversion that will do the same but have yet to find one. I was thinking there may be a tag for svn update that would accomplish this. Is there one?

A: 

Are you just looking to see changes? I'd look at the diff command. Example here.

Jacob G
+5  A: 

To see what an update will change:

svn status -u 

Which is like svn status but also displays files which would be updated.

You can then see individual differences by running svn status/svn diff` on individual files.

timdev
svn status -u is what I was looking for. Thanks!