Ignore .svn when doing `diff -r`
--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 3 Looping
--
Chapters
00:00 Ignore .Svn When Doing `Diff -R`
00:20 Answer 1 Score 16
00:26 Accepted Answer Score 143
00:35 Thank you
--
Full question
https://superuser.com/questions/130235/i...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#svn #diff #recursive #ignore
#avk47
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 3 Looping
--
Chapters
00:00 Ignore .Svn When Doing `Diff -R`
00:20 Answer 1 Score 16
00:26 Accepted Answer Score 143
00:35 Thank you
--
Full question
https://superuser.com/questions/130235/i...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#svn #diff #recursive #ignore
#avk47
ACCEPTED ANSWER
Score 143
Add --exclude=".svn"
as an option like so:
$ diff -r --exclude=".svn" src1/ src2/
ANSWER 2
Score 16
diff --exclude=.svn ...