Skip to content

Instantly share code, notes, and snippets.

@wholmgren
Last active August 11, 2024 22:18
Show Gist options
  • Save wholmgren/64bd6e2f75de038296d4 to your computer and use it in GitHub Desktop.
Save wholmgren/64bd6e2f75de038296d4 to your computer and use it in GitHub Desktop.
set git difftool to bbdiff
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
@racl101
Copy link

racl101 commented Jan 2, 2019

Thanks for this. It was very helpful.

@ThuanNP
Copy link

ThuanNP commented Feb 26, 2024

Thank's for your helpful codes.

@paulehoffman
Copy link

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