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
Steps to Reproduce:
[diff] external = external-diff-cmd
In my specific case I followed these instructions to configure meld as the diff viewer https://nathanhoad.net/how-to-meld-for-git-diffs-in-ubuntu-hardy.
meld
[diff] external = /home/user/scripts/diff.py
where diff.py contains
diff.py
#!/usr/bin/python import sys import os os.system('meld "%s" "%s"' % (sys.argv[2], sys.argv[5]))
which is needed just to adapt the order in which git diff passes cli arguments to the order expected by meld
git diff
Launch git diff with an option specifying to use the internal diff algorithm or plain diff
git diff --no-ext-diff
The text was updated successfully, but these errors were encountered:
6b4642d
@carlobonamico Thank you so much for this awesome bug report! 4.1.2 is out now with your fix -- thanks again!
Sorry, something went wrong.
Merge pull request gitkraken#96 from cagdas001/Ticket60
8fe07d5
Added code syntax highlighting for Comment Viewer and Editor apps
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
eamodio
No branches or pull requests
Steps to Reproduce:
In my specific case I followed these instructions to configure
meld
as the diff viewer https://nathanhoad.net/how-to-meld-for-git-diffs-in-ubuntu-hardy.where
diff.py
containswhich is needed just to adapt the order in which
git diff
passes cli arguments to the order expected bymeld
Proposed fix
Launch
git diff
with an option specifying to use the internal diff algorithm or plain diffgit diff --no-ext-diff
The text was updated successfully, but these errors were encountered: