Setting up KDiff3 to work with TortoiseGIT
Setting up KDiff3 to work with TortoiseGIT
When I work with git I do most of my work on the command line except for a few tasks. Resolving conflicts is one of them. So when it comes to resolving conflicts I prefer the KDiff3 instead of the TortoiseGIT diff. I was googling around to find the proper way and after grabbing things from difference places here is what I did.
Obvious steps :)
- Install git
- Install KDiff3
- Install TortoiseGIT
Then after that
- Open tortoise GIT settings
- Go to "Diff Viewer"
- Go to section "Configure the program used for comparing different revisio...."
- Choose "External"
- Enter the following "[ kdiff3 instalation path ]\kdiff3.exe %base %mine --L1 %bname --L2 %yname"
- Go to "Merge Tool"
- Choose "External"
- Enter the following "[ kdiff3 instalation path ]\kdiff3.exe %base %mine %theirs -o %merged"
- Click apply
I will soon write something to show how to actually resolve conflicts using this setup.
Comments
Post a Comment