• Show log

    Commit

  • Hash : 4f2d272f
    Author : Carlos Martín Nieto
    Date : 2014-11-05T16:51:39

    ignore: don't leak rules into higher directories
    
    A rule "src" in src/.gitignore must only match subdirectories of
    src/. The current code does not include this context in the match rule
    and would thus consider this rule to match the top-level src/ directory
    instead of the intended src/src/.
    
    Keep track fo the context in which the rule was defined so we can
    perform a prefix match.