4

I have a problem with launching meld tool for seeing diff. In my .gitconfig i have:

[diff]
   tool = meld

and 'meld' is present in environment path (i can run it just by typing 'meld' in command prompt). Reading lot of tuts how to configure difftool and it looks like this should be enough. But when typing git difftool i'm getting this error:

error: cannot spawn git-difftool--helper: No such file or directory
external diff died, stopping at initial.txt.

(initial.txt i'ts changed file that i want to diff)

Help, Please

dahel
  • 63
  • 1
  • 3

1 Answers1

-1

This is an often reoccuring problem:

error: cannot spawn ssh: No such file or directory fatal: unable to fork

As starting point, you might look at "Cannot spawn ssh" when connecting to Github, but ssh -T git@github.com works? I'm sure there is something useful!

I hope it can help you! -Joey

Community
  • 1
  • 1
Joey Dorrani
  • 371
  • 1
  • 1
  • Thanks for response, i was reading it and try to eliminate all whitespaces from configuration, still the same error. Also i see that the remedy presented in your link was the tags removing (i have no tags right now so it's not applied to my issue) – dahel Mar 16 '15 at 15:36