Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upfix(cmd): make short options with arguments become two separate argum… #341
Conversation
…ents for the executable.
Closed
Thank you ! Please note that the tests require some runup on the local repository, what's done exactly can be seen in the |
Byron
added a commit
that referenced
this pull request
Aug 21, 2015
fix(cmd): make short options with arguments become two separate argum…
1d768f6
into
gitpython-developers:master
1 check passed
1 check passed
This comment has been minimized.
This comment has been minimized.
FYI, I believe this breaks diff functionality. Using git 2.5.4 on OS X and it insists that the -U option not have a space between the option and the value. 1.0.2 is broken b/c of this. |
This comment has been minimized.
This comment has been minimized.
I confirm that this is the case. Somehow it's |
This comment has been minimized.
This comment has been minimized.
Discussion of the problem in issue #382 |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
…ents for the executable.
So
git.Git.command(f=42)
becomesgit command -f 42
instead ofgit command -f42
, which is not recognized bygit
. See #340.