-
-
Notifications
You must be signed in to change notification settings - Fork 932
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] GitCommandNotFound when executing repo.git.execute on macOS #2016
Comments
The documentation does make it appear as if a string should be working even though I am pretty sure it's never used that way. Maybe the documentation should be updated. The way this should be used is like this: |
git log is only an example, I use other commands, such as git merge-base It works well on Windows, only get error on macOS. (I didn‘t test on Linux) |
There is at least one bug shown here. The exception message GitPython produces is wrong and misleading, because at no point was an attempt made to execute a command called But it looks like this issue is not only about the exception message, and that this is mainly reporting the inability to run The
But this does not work, because it tries to run a command whose name is
(The error message there is directly analogous to the And this works because it passes a list of the command and arguments rather than a string, so it unambiguously runs
The Python documentation on
Both when using something like # Working case (array argument)
repo.git.execute(["git", "log", "-n", "1"]) # Executes successfully However, with GitPython. when the command you are running is (If for some reason you want to pass all arguments explicitly, this can still be done that way: |
Describe the bug
When executing repo.git.execute with string-type arguments on macOS, it throws a GitCommandNotFound exception:
I have installed git and it works well on other commands, only repo.git.execute doesn't work'
The error only occurs when passing a string-type argument to repo.git.execute
Works correctly when using string array arguments
Works correctly when using shell=True argument
for example:
Environment
The text was updated successfully, but these errors were encountered: