"Shawn O. Pearce" <spearce@xxxxxxxxxxx> writes: > The diff is weird: > > $ git-diff-index --cached -p --no-color -U5 \ > d6e02aa06c91c711d98ae06e6e69c5de5841a5e5 -- g > diff --git a/g b/g > deleted file mode 100644 > index e69de29..1a010b1 > diff --git a/g b/g > new file mode 120000 > index e69de29..1a010b1 > --- /dev/null > +++ b/g > @@ -0,0 +1 @@ > +file > \ No newline at end of file > > Notice how we get two diffs for the same file? That's why git-gui > is choking on this particular change. It expected only one diff > for the path it gave to Git. It got two back. In cases like this > we may not be able to support line or hunk application as the patch > is really two different patches against that path. :-| Hmmm... it looks _exactly_ like a problem I had with writing "syntax highlighting" (and linkage) for the patchset part of 'commitdiff' and 'blobdiff' views, namely that typechange (file to symlink and vice versa) generates two patches for single difftree (raw diff format output) line. See git_patchset_body in gitweb/gitweb.perl, and is_patch_split function, and commit message of 0cec6db (gitweb: Fix and simplify "split patch" detection), which tells about alternate solution. -- Jakub Narebski Poland ShadeHawk on #git -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html