##// END OF EJS Templates
git: make dirstate status() respect matcher...
Augie Fackler -
r45990:0c6b2cc9 default
parent child Browse files
Show More
@@ -142,6 +142,8 b' class gitdirstate(object):'
142 gstatus = self.git.status()
142 gstatus = self.git.status()
143 for path, status in gstatus.items():
143 for path, status in gstatus.items():
144 path = pycompat.fsencode(path)
144 path = pycompat.fsencode(path)
145 if not match(path):
146 continue
145 if status == pygit2.GIT_STATUS_IGNORED:
147 if status == pygit2.GIT_STATUS_IGNORED:
146 if path.endswith(b'/'):
148 if path.endswith(b'/'):
147 continue
149 continue
General Comments 0
You need to be logged in to leave comments. Login now