Created
April 8, 2020 02:27
-
-
Save izmailoff/0d1c87c8f4d3bd1c3287e6392bbf868b to your computer and use it in GitHub Desktop.
git mergetool setup
This file contains hidden or 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
sudo apt-get update | |
sudo apt-get install kdiff3 | |
git config --global --add merge.tool kdiff3 | |
git config --global --add mergetool.kdiff3.path "/usr/bin/kdiff3" | |
git config --global --add mergetool.kdiff3.trustExitCode false | |
git config --global --add mergetool.prompt false | |
git config --global --add diff.guitool kdiff3 | |
git config --global --add difftool.kdiff3.path "/usr/bin/kdiff3" | |
git config --global --add difftool.kdiff3.trustExitCode false | |
git config --global --add difftool.prompt false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment