mayaculpa / hapi

Hydro­ponic Automa­tion Plat­form Ini­tia­tive (HAPI)
GNU General Public License v3.0
69 stars 21 forks source link

Using meld with git diff #103

Closed james-prior closed 7 years ago

james-prior commented 7 years ago

I just discovered a way of using meld with git diff that obviates my gmd stuff. The new way is:

git difftool -t meld -y ...

where ... are the things to compare same as with the git diff command. For example:

git difftool -t meld -y 3196cfd 630bd3f
PedroSFreitas commented 7 years ago

Good to know!!! meld is definitely a nice piece of software. 👍

james-prior commented 7 years ago

I have come up with a couple of aliases in ~/.gitconfig to help.

[alias]
    dm = difftool -t meld
    dy = difftool -t meld -y