Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

this command shows the local status of the package with respect to the last svn commit (check -inout) command.

svn status -u (or --show-updates)

...

Display diffs between local copy and the HEAD of the package in repository

svn diff -r HEAD <package>

Display changes happened in repository between time when the package was checked out and now:

svn diff -r BASE:HEAD <package>

where

  • BASE is the revision of the package when it was checked out
  • HEAD is the latest revision of the same directory in SVN

For more complex cases consult SVN documentation.

...