The difference between a working copy and HEAD ; the changes that will need to be made to what is now in the repository ( HEAD ) to create your working copy:
svn diff -r HEAD --old=<file>
Possible interest, the difference between BASE and HEAD ; Changes that have been checked in the repository since the last updated working copy:
svn diff -r BASE:HEAD <file>
And, of course, the difference between BASE and a working copy; Changes made since the last updated working copy:
svn diff <file>
Three versions are discussed: BASE , working copy, and HEAD .
BASE : <file> with the last checked out / updated. What working copy will return after using svn revert- working copy: local changes to
<file> that were checked / updated most recently as BASE HEAD : recent changes to the repository. Equivalent to BASE if there were no changes since <file> was checked / updated as a working copy.
Chadwick Jun 28 2018-12-12T00: 00Z
source share