We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the regex:
GitPython/git/diff.py
Line 372 in 6d09bb6
is not able to match the diff generated if this flag is enabled in ~/.gitconfig:
~/.gitconfig
[diff] mnemonicPrefix = true
because it is expecting [ab]/ as folder prefix for the diff but with mnemonicPrefix enabled it become [wc]/
[ab]/
[wc]/
mnemonicPrefix
diff --git a/.vscode/launch.json b/.vscode/launch.json index xxxxxxx..xxxxxxxx --- a/.vscode/launch.json +++ b/.vscode/launch.json
mnemonicPrefix = true
diff --git c/.vscode/launch.json w/.vscode/launch.json index xxxxxxx..xxxxxxxx --- c/.vscode/launch.json +++ w/.vscode/launch.json
repo = git.Repo('.') branch_ref = repo.head ancestor_ref = repo.merge_base(branch_ref, repo.refs["main"]) diff = ancestor_ref[0].diff(None, create_patch=True) print(diff)
The text was updated successfully, but these errors were encountered:
Thanks a lot for reporting!
To fix this, GitPython should control for this flag and turn it off when invoking Git, i.e. with git -c mnemonicPrefix=false.
git -c mnemonicPrefix=false
Sorry, something went wrong.
thanks @Byron, is it there a workaround I can use in the meantime? something like:
diff = ancestor_ref[0].diff(None, create_patch=True, c='diff.mnemonicPrefix=false')
So far a quick workaround is:
diff = ancestor_ref[0].diff(None, create_patch=True, **{'src-prefix':'a/','dst-prefix':'b/'})
No branches or pull requests
the regex:
GitPython/git/diff.py
Line 372 in 6d09bb6
is not able to match the diff generated if this flag is enabled in
~/.gitconfig
:because it is expecting
[ab]/
as folder prefix for the diff but with mnemonicPrefix enabled it become[wc]/
Diff without
mnemonicPrefix
Diff with
mnemonicPrefix = true
Quick Test
The text was updated successfully, but these errors were encountered: