We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider the use case when you have a directory structure like this :
. |-- 0.csv |-- A | `-- 1.csv `-- .gitignore
and the contents of .gitignore are :
.gitignore
*.csv !A/0.csv
ignorespec.match_file("A/0.csv") returns True, which is expected. while ignorespec.match_file("./A/0.csv") returns False.
ignorespec.match_file("A/0.csv")
True
ignorespec.match_file("./A/0.csv")
False
The text was updated successfully, but these errors were encountered:
@spMohanty Thank you for the two reports. I'll look into them this week.
Sorry, something went wrong.
@spMohanty This is now supported.
No branches or pull requests
Consider the use case when you have a directory structure like this :
and the contents of
.gitignore
are :ignorespec.match_file("A/0.csv")
returnsTrue
, which is expected.while
ignorespec.match_file("./A/0.csv")
returnsFalse
.The text was updated successfully, but these errors were encountered: