Re: [gitweb PATCH] add a 'diff to parent' option in the file history display
From: Brad Roberts <hidden>
Date: 2016-06-15 22:42:09
And of course I flub another patch.. the first new line there needs a trailing '.'. I've checked in that change to the repository below. Also, both of these are on the 'brad-master' branch, not 'master'. On Sun, 23 Oct 2005, Brad Roberts wrote:
quoted hunk ↗ jump to hunk
Date: Sun, 23 Oct 2005 08:25:05 -0700 (PDT) From: Brad Roberts <redacted> To: git@vger.kernel.org Subject: [gitweb PATCH] add a 'diff to parent' option in the file history display I'm not sure how well this plays with multiple parent merges or anything complicated. It seems to work well on a converted cvs archive. Pullable from: git://cvs.puremagic.com/git/gitweb.git --------------------- add a 'diff to parent' option in the file history display Signed-off-by: Brad Roberts <redacted> --- gitweb.cgi | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) 2539b424d62cc2ab060c5d2fa9525a6b6f8df7e5diff --git a/gitweb.cgi b/gitweb.cgi --- a/gitweb.cgi +++ b/gitweb.cgi@@ -2054,6 +2054,9 @@ sub git_history { print " | " . $cgi->a({-href => "$my_uri?p=$project;a=blobdiff;h=$blob;hp=$blob_parent;hb=$commit;f=$file_name"}, "diff to current"); + print " | " + $cgi->a({-href => "$my_uri?p=$project;a=blobdiff;h=$blob_parent;hp=$3;hb=$commit;f=$file_name"}, + "diff to parent"); } print "</td>\n" . "</tr>\n"; -To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html