Thanks to visit codestin.com Credit goes to github.com
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 7187984 commit 3f5a942Copy full SHA for 3f5a942
1 file changed
git/util.py
@@ -490,7 +490,7 @@ def is_cygwin_git(git_executable: PathLike) -> bool: ...
490
491
492
def is_cygwin_git(git_executable: Union[None, PathLike]) -> bool:
493
- if sys.platform == "win32": # TODO: See if we can use `sys.platform != "cygwin"`.
+ if sys.platform != "cygwin":
494
return False
495
elif git_executable is None:
496
0 commit comments