summaryrefslogtreecommitdiff
path: root/contrib/blameview/blameview.perl
Commit message (Collapse)AuthorAgeFilesLines
* contrib: drop blameview/ directoryJeff King2013-06-121-155/+0
| | | | | | | | | | | | | | | | Blameview was a quick-and-dirty demonstration of how blame's incremental output could be used in an interface. These days one can find much better (and less ugly!) demonstrations in "git gui blame" and "tig blame". The only advantage blameview has is that its code is perhaps simpler to read. However, that is balanced by the fact that it probably has bugs, as nobody uses it nor has touched the code in 6 years. An implementor is probably better off just reading the "incremental output" section of "man git-blame". Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
* blameview: Fix the browse behavior in blameviewAneesh Kumar2007-02-271-1/+1
| | | | Signed-off-by: Junio C Hamano <junkio@cox.net>
* blameview: Move the commit info to a pane below the blame window.Aneesh Kumar K.V2007-02-121-7/+26
| | | | | | | Also spawn the the new blameview in the background Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
* blameview: Support browsable functionality to blameview.Aneesh Kumar K.V2007-02-051-3/+20
| | | | | | | | Double clicking on the row execs a new blameview with commit hash as argument. Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
* blameview: Use git-cat-file to read the file content.Aneesh Kumar K.V2007-01-301-1/+2
| | | | | | | | | Fix blameview to use git-cat-file to read the file content. This make sure we show the right content when we have modified file in the working directory which is not committed. Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
* Add a sample program 'blameview' to show how to use git-blame --incrementalJeff King2007-01-281-0/+118
Signed-off-by: Junio C Hamano <junkio@cox.net>