We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 044a8bf commit 96fae83Copy full SHA for 96fae83
1 file changed
git/util.py
@@ -377,7 +377,9 @@ def is_cygwin_git(git_executable: PathLike) -> bool:
377
378
379
def is_cygwin_git(git_executable: Union[None, PathLike]) -> bool:
380
- if not is_win:
+ if is_win:
381
+ # is_win seems to be true only for Windows-native pythons
382
+ # cygwin has os.name = posix, I think
383
return False
384
385
if git_executable is None:
0 commit comments