Git log filtering by folder case insensitive (Windows) -
i got following command:
git log --oneline -- sql\ that return commits files of sql path.
but if change case, this:
git log --oneline -- sql\ it doesn't work. can't find option make command case insensitive. possible?
according specific example can replace sql [ss]ql. path accepts simple regular expression.
git log --oneline -- [ss]ql\ there no solution using git core function.
Comments
Post a Comment