• Show log

    Commit

  • Hash : e3d7bccb
    Author : Steve King Jr
    Date : 2019-03-14T15:51:15

    ignore: Do not match on prefix of negated patterns
    
    Matching on the prefix of a negated pattern was triggering false
    negatives on siblings of that pattern. e.g.
    
    Given the .gitignore:
    dir/*
    !dir/sub1/sub2/**
    
    The path `dir/a.text` would not be ignored.