Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

How to compare the last committed state in svn?


Asked by Vicente Gardner on Dec 12, 2021 SVN



svn diff -r 8979:11390 If you want to compare the last committed state against your currently saved working files, you can use convenience keywords: svn diff -r PREV:HEAD (Note, without anything specified afterwards, all files in the specified revisions are compared.)
Consequently,
To compare entire revisions, it's simply: svn diff -r 8979:11390 If you want to compare the last committed state against your currently saved working files, you can use convenience keywords: svn diff -r PREV:HEAD
Besides, If you want to compare the last committed state against your currently saved working files, you can use convenience keywords: (Note, without anything specified afterwards, all files in the specified revisions are compared.) Thanks for contributing an answer to Stack Overflow!
Just so,
- Command line to the project folder. - Type ' svn diff ' If you already commit you last changes before vacation. Browse to your project. Find a link "View log". Click it. Select top two revision and Click "Compare Revisions" button in the bottom. This will show you the different between the latest and the previous revision.
Also,
But you cannot continue to work on this revision, as SVN will complain that your working copy is out of date. revert to this revision will undo all changes in your working copy which were made after the selected revision (in your example rev. 96,97,98,99,100) Your working copy is now in modified state.