I want to use meld as my diff tool for git.
If I configure my .gitconfig
like this :
[difftool]
prompt = false
[diff]
tool = meld
and run command : $ git difftool
then git open a meld window for each file which have changes.
But I want one single window with all my files in the meld list box.
I have read a little about -d
or --dir-diff
option.
When I try : $ git difftool -d
then a single windows is opened with one directory tree in each meld part, but either contain empty directories.
I can not open my files from here.
For infomation :
$ git --version
git version 1.9.1
$ meld --version
meld 1.8.4
$ lsb_release -d
Description: Ubuntu 14.04.2 LTS
I am using git svn
too, but I don't think this is related in my problem; because as far as I understand git-svn, my directory work as a simple git directory.
Related questions :
View differences of branches with meld?