You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have compiled a newer git version our self, and added the path to the binary to the PATH env variable, but this modified version of the PATH env gets ignored when using subprocess. After passing the current value of the PATH env variable to the subprocess call(s) the error was gone.
An alternative way would be to pass the full path to git as reported by shutil.which("git"). I have seen that there are more subprocess calls to git. So it maybe makes sense to store the value of shutil.which("git") somewhere and use it instead of passing the string "git" to the subprocess calls.