Using svn diff after reintegration of branch
- by manu08
Consider these steps:
Create a svn branch
Add several new files to the branch
Reintegrate the branch into a local copy of the trunk
Run svn diff on the local trunk copy
The issue is that svn diff doesn't detect any changes. It ignores the new files because they are marked as copies of the branch. So when it diffs them against the head of the branch, no differences are found.
How do I force svn diff to pick up these changes?