The diff tool in Visual Studio when using the Git Plugin -


microsoft has released git plugin visual studio 2012. have found excellent, there doesn't seem option change default diff tool. worse, cannot diff @ on ascx codebehind files. shows diff option main .ascx file.

how you

  1. diff codebehind files when using git plugin?
  2. change diff tool?

you have change local .gitconfig, rather make change through visual studio tfs

https://gist.github.com/mkchandler/2377564

add following global .gitconfig file:  [diff]     tool = diffmerge [difftool "diffmerge"]     cmd = \"c:\\program files\\sourcegear\\common\\diffmerge\\sgdm.exe\" \"$local\" \"$remote\" [merge]     tool = diffmerge [mergetool "diffmerge"]     cmd = \"c:\\program files\\sourcegear\\common\\diffmerge\\sgdm.exe\" -merge -result=\"$pwd/$merged\" \"$pwd/$local\" \"$pwd/$base\" \"$pwd/$remote\"     trustexitcode = true [mergetool]     keepbackup = false 

Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -