Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GIT diff GUI

I have a rather large diff of 2 GIT branches and would like to open them in some sort of nice UI side by side. Something that shows me the diff's easily, and hopefully that I can merge differences one by one. git diff is rather hard to work with.

like image 444
daniel Avatar asked Jul 10 '09 23:07

daniel


People also ask

How do I open git diff tool?

Go to your repository in Git Bash. Type git config diff. tool winmerge . Verify it worked by typing git difftool .

What is git diff tool?

DESCRIPTION. git difftool is a Git command that allows you to compare and edit files between revisions using common diff tools. git difftool is a frontend to git diff and accepts the same options and arguments. See git-diff[1].


1 Answers

The answer is git difftool (at least for git version 1.6.3 and later). Please remember that it just invokes configured or automatically found graphical diff tool.

like image 75
Jakub Narębski Avatar answered Sep 20 '22 21:09

Jakub Narębski