On Tue, Sep 21, 2010 at 10:57:56AM -0700, Junio C Hamano wrote: > > [diff "SYMLINK"] > > textconv = pointless-munge > > > > But again, I have no idea why anyone would want such a feature, so it is > > not worth thinking too hard about it. > > I agree with you; pointless-munge would just be 'printf "%s\n"' ;-) Almost. That would print the name of the tempfile; the actual pathname is the contents of the tempfile (unless you are proposing totally alternate semantics for the symlink diff section. :) ). Just for fun, the patch to make this work is as tiny as: diff --git a/diff.c b/diff.c index 6fb18ae..58c4477 100644 --- a/diff.c +++ b/diff.c @@ -1771,8 +1771,14 @@ static void emit_binary_diff(FILE *file, mmfile_t *one, mmfile_t *two, char *pre static void diff_filespec_load_driver(struct diff_filespec *one) { - if (!one->driver) + if (one->driver) + return; + + if (S_ISLNK(one->mode)) + one->driver = userdiff_find_by_name("SYMLINK"); + else one->driver = userdiff_find_by_path(one->path); + if (!one->driver) one->driver = userdiff_find_by_name("default"); } @@ -1820,7 +1826,7 @@ struct userdiff_driver *get_textconv(struct diff_filespec *one) { if (!DIFF_FILE_VALID(one)) return NULL; - if (!S_ISREG(one->mode)) + if (!S_ISREG(one->mode) && !S_ISLNK(one->mode)) return NULL; diff_filespec_load_driver(one); if (!one->driver->textconv) after which I successfully tested with: git init repo && cd repo && echo content >file.txt && ln -s file.txt link.txt && echo '*.txt diff=txt' >.gitattributes && git add . && git commit -m foo && git config diff.txt.textconv "sed 's/^/converted: /'" && git config diff.SYMLINK.textconv "perl -pe 's/$/\n/'" && git show It works with the whole range of diff config, so you could do something as awesomely stupid as: $ git config diff.SYMLINK.binary true $ git show link.txt ... diff --git a/link.txt b/link.txt new file mode 120000 index 0000000..4c33073 Binary files /dev/null and b/link.txt differ If you really wanted the "dereference my symlinks" behavior, you could do: git config diff.SYMLINK.textconv 'sh -c "cat `cat $1`" -' but that is not quite right; you would actually need to dereference relative symlinks with respect to the link itself, which textconv never gets (plus you would probably want to handle broken links more gracefully). Anyway, as I said at the beginning, for me this was just for fun. I find the intended use rather silly, but maybe somebody else is interested. I do think it's the right way of implementing such a feature, because we already turn off textconv when making patches that are meant to be applied rather than viewed. However, I didn't do any testing or give much thought to whether this would affect any unintended code paths. -Peff -- 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