I need to control only "debian" subdirectories on my tree :
pkg/.git
pkg/.gitignore
pkg/package1/package1-2.2.1/debian
pkg/package2/package2-1.0/debian
I tried this kind of .gitignore but it won't work :
*
!.gitignore
!*/*/debian
When I run
git add package1/package1-2.2.1/debian
git's answer is : The following paths are ignored by one of your .gitignore files: package1
Which is quite logical. Any help would be appreciated !