How to get winmerge to show diff for new file in git?
I can get winmerge to show me diffs for modified file. But for new files, winmerge gives a dialog saying 'Left path is invalid!'. I want it to show the left pane as empty and right pane with the contents of the file. $ git difftool head^ newfile.txt winmerge Dialog: I'm on git version 2.8.2.windows.1 This is my git config for difftool: [diff] tool = winmerge [difftool] prompt = false [difftool "winmerge"] cmd = \"C:\\Program Files (x86)\\WinMerge\\WinMergeU.exe\" -e -ub -wl \"$LOCAL\" \"$REMOTE\" What am I missing? I could not find this exact workaround so I'm posting this. Hopefully, someone