We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcdcccd commit 6cf8633Copy full SHA for 6cf8633
git/config.py
@@ -592,7 +592,7 @@ def _included_paths(self) -> List[Tuple[str, str]]:
592
paths += self.items(section)
593
elif keyword == "hasconfig:remote.*.url":
594
for remote in self._repo.remotes:
595
- if fnmatch.fnmatch(remote.url, value):
+ if fnmatch.fnmatchcase(remote.url, value):
596
597
break
598
return paths
0 commit comments