As the opening title suggests, I am trying to produce a side-by-side diff using git difftool
. I am in an environment s.t. vimdiff
is the only available tool on these computers and am using CLI commands to do code reviews.
If I have the head/origin (that may be desynced/unable to do git apply
), how would I create a side-by-side diff when I have a patch file (produced via git diff patch-a patch-b > patch-file.patch
)?
Obviously, the ideal scenario would be git apply myPatch.patch
, git difftool -y origin-hash patch-hash
, but this does not always work.