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

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -