Last active
August 11, 2024 22:18
-
-
Save wholmgren/64bd6e2f75de038296d4 to your computer and use it in GitHub Desktop.
set git difftool to bbdiff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global diff.tool bbdiff | |
git config --global difftool.bbdiff.cmd 'bbdiff --wait --resume "$LOCAL" "$REMOTE"' | |
git config --global difftool.prompt false | |
git config --global merge.tool bbdiff | |
git config --global mergetool.bbdiff.cmd 'bbdiff --wait --resume "$LOCAL" "$REMOTE"' | |
Double check ~/.gitconfig |
Thank's for your helpful codes.
A zillion years after you posted this: thanks! This is exactly what I needed after switching off a commercial differ.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this. It was very helpful.