Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View changes from "git log -p" in "difftool"

I'm getting branch changes for review by using git log -p master..newbranch, but it just gives me diff file. How can I view this diff with external tool like meld? I want to see what was changed only in this specific branch (from branch start to tip).

like image 425
Kuroki Kaze Avatar asked Jun 11 '13 15:06

Kuroki Kaze


1 Answers

Okay, I've found it's done like this:

git difftool --dir-diff master...newbranch
like image 199
Kuroki Kaze Avatar answered Oct 16 '22 19:10

Kuroki Kaze