Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the folder application/ which I add to the .gitignore. Inside the application/ folder is the folder application/language/gr. How can I include this folder? I've tried this

application/
!application/language/gr/

with no luck...

Thanks in advance.

share|improve this question
possible duplicate of git: ignore everything except subdirectory – Jefromi Apr 4 '11 at 5:03

1 Answer

up vote 99 down vote accepted

If you exclude application/, then everything under it will always be excluded (even if some later negative exclusion pattern (“unignore”) might match something under application/).

To do what you want, you have to “unignore” every parent directory of anything that you want to “unignore”. Usually you end up writing rules for this situation in pairs: ignore everything in a directory, but not some certain subdirectory.

# you can skip this first one if it is not already excluded by prior patterns
!application/

application/*
!application/language/

application/language/*
!application/language/gr/
share|improve this answer
3  
Are the trailing asterisks significant? If so, what's the difference in meaning? Per the algorithm described in the gitignore documentation, ending with a trailing slash matches a directory and paths beneath that directory. Ending with an asterisk would then fall to treatment as a glob pattern. Experimenting shows the asterisk variant to work, but not the one ending in just a trailing slash. I'd like to understand why that's so. – seh May 11 '11 at 13:21
18  
@seh: Yes, the trailing /* is significant. If a directory is excluded, Git will never look at the contents of that directory. The pattern dir/ excludes a directory named dir and (implicitly) everything under it. The pattern dir/* says nothing about dir itself; it just excludes everything under dir. With dir/, Git will never look at anything under dir, and thus will never apply any of the “un-exclude” patterns to anything under dir. With dir/*, Git will process the direct contents of dir, giving other patterns a chance to “un-exclude” some bit of the content (!dir/sub/). – Chris Johnsen May 12 '11 at 2:58
1  
Ah, that explains it. No matter how many times I've read the gitignore documentation, I never understood when the reverted patterns don't work. With your explanation, it's now clear. The gitignore documentation needs a "recipe" section to explain how to do this. – seh May 13 '11 at 0:32
2  
just because that's correct doesn't mean it's not insane – yoyo Feb 13 at 21:23
Why on earth doesn't git just assume the trailing asterisk if the line points to a directory? Just adding that asterisk fixed the problem I was having and made git behave as expected! – Jez Mar 26 at 12:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.