I am new to git and am having difficulty setting up the diff / merge visual tool. I configured git according to the instructions http://www.scootersoftware.com/support.php?zz=kb_vcs#gitwindows , but when I run git diffftool file.txt, diff is displayed on the console, errors are not displayed and are not compared, they are not compared are launched.
What ideas might come up?
thank
James
I am running 1.7.6.msysgit.0 on Windows 7 x64
My config (I deleted user names, etc.)
$ git config --list
core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca-bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
diff.tool=bc3
difftool.bc3.path=c:/program files (x86)/beyond compare 3/bcomp.exe
merge.tool=bc3
mergetool.bc3.path=c:/program files (x86)/beyond compare 3/bcomp.exe
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
gui.wmstate=zoomed
gui.geometry=584x210+275+275 408 476
James source
share