I'm trying to generate a diff between two revisions of a specific folder in SVN. However, one subdirectory has a lot of messy and irrelevant changes that I don't want included in the diff. Any idea on how I can accomplish this?
I thought perhaps I could try something like this?
C:\>svn diff -r 58:64 `svn ls http://svn-server/svn/my-app/branches/prototype | grep -v 'doc/'`
That doesn't seem to work though:
svn: E155007: 'C:\cygwin\home\myusername\.gitignore' is not a working copy
.gitignore is one of the files returned by svn ls http://svn-server/svn/my-app/branches/prototype | grep -v 'doc/':
C:\>svn ls http://svn-server/svn/my-app/branches/prototype | grep -v 'doc/'
.gitignore
.project
.rspec
.rvmrc
Gemfile
Gemfile.lock
README.rdoc
Rakefile
app/
config/
config.ru
db/
features/
lib/
log/
public/
script/
spec/
test/
vendor/
svn ls ... /doc'? – Hew Wolff Oct 26 '12 at 21:04svn ls http://svn-server/svn/my-app/branches/prototype | grep -v '/doc'? – Ajedi32 Oct 26 '12 at 21:07svn diffoutput can exclude all the changes from the files matching the given pattern. – Adam Siemion May 8 at 20:44