I'm trying to add a linux kernel to a svn tree, which has a .git subdirectory - which I don't want to add. Can anyone explain this behaviour - why does it NOT ignore the .git direcotry ?
test2$ mkdir -p a/.git/blah
test2$ ls
a
test2$ svn propset svn:ignore .git .
property 'svn:ignore' set on '.'
test2$ svn propset -R svn:ignore .git .
property 'svn:ignore' set (recursively) on '.'
test2$ svn add a
A a
A a/.git
A a/.git/blah
Thanks