Skip to content
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

gitconfig: mnemonicPrefix conflict with create_patch #2013

Open
ceccopierangiolieugenio opened this issue Mar 12, 2025 · 3 comments
Open

gitconfig: mnemonicPrefix conflict with create_patch #2013

ceccopierangiolieugenio opened this issue Mar 12, 2025 · 3 comments

Comments

@ceccopierangiolieugenio

the regex:

[ ](?P<a_path_fallback>"?[ab]/.+?"?)[ ](?P<b_path_fallback>"?[ab]/.+?"?)\n

is not able to match the diff generated if this flag is enabled in ~/.gitconfig:

[diff]
        mnemonicPrefix = true

because it is expecting [ab]/ as folder prefix for the diff but with mnemonicPrefix enabled it become [wc]/

Diff without mnemonicPrefix

diff --git a/.vscode/launch.json b/.vscode/launch.json
index xxxxxxx..xxxxxxxx
--- a/.vscode/launch.json
+++ b/.vscode/launch.json

Diff with mnemonicPrefix = true

diff --git c/.vscode/launch.json w/.vscode/launch.json
index xxxxxxx..xxxxxxxx
--- c/.vscode/launch.json
+++ w/.vscode/launch.json

Quick Test

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)
@Byron
Copy link
Member

Byron commented Mar 12, 2025

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.

@ceccopierangiolieugenio
Copy link
Author

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')

@ceccopierangiolieugenio
Copy link
Author

So far a quick workaround is:

diff = ancestor_ref[0].diff(None, create_patch=True, **{'src-prefix':'a/','dst-prefix':'b/'})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants