SVN command to see what an incoming file update will change.

Say you’re on live and issue an svn status –u command and see:

        *    79772   htdocs/index.php

You can see what change[s] will be published on update by typing:

svn diff -r79772:HEAD htdocs/index.php

 ----------------

output:
Index: htdocs/index.php

===================================================================

--- htdocs/index.php(revision 79772)

+++ htdocs/index.php(revision 85814)

@@ -28,6 +28,7 @@

  */
$aTagAliases = array(

'/adventure' => '/Extreme_adventure',
+'/wildlife_viewing' => '/Watchable_Wildlife',

'/family' => '/family_activities',

'/route66' => '/route_66',

'/value' => '/great_value_getaways',

section: