0

I'm trying to use INET PDFC as a difftool for comparing different versions of a pdf file.

Config file

... 
[diff]
    tool = pdfc
[difftool "pdfc"]
    cmd = 'C:/Program Files (x86)/i-net PDFC/PDFC.exe' $LOCAL $REMOTE

When I run git difftool HEAD HEAD^ <filename> I only see 1 file.

How can I load the two versions to this tool? Or should I use the .bat file? And how?

1 Answers1

0

Try git difftool -t=pdfc HEAD HEAD^ <filename> to specify the tool.

Christoph
  • 6,841
  • 4
  • 37
  • 89