I'm not able to undo some changes using git
command. I'm using Git Bash for windows and unfortunately, while following a tuto to change my git difftool
, I accidentally wrote this command :
$ git config --global diff.external git-meld
Now, if run the classic diff checker command, I got this error :
$ git diff
error: cannot spawn meld.exe: No such file or directory
fatal: external diff died, stopping at myJavaFile.java
Right now, I want to undo my first command in order to use native git diff
again.
Any help ?