git-pickaxe: blame rewritten.

Currently it does what git-blame does, but only faster.

More importantly, its internal structure is designed to support
content movement (aka cut-and-paste) more easily by allowing
more than one paths to be taken from the same commit.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano
2006-10-19 16:00:04 -07:00
parent e19343ad54
commit cee7f245dc
8 changed files with 1314 additions and 0 deletions

View File

@ -4,6 +4,7 @@
check_count () {
head=
case "$1" in -h) head="$2"; shift; shift ;; esac
echo "$PROG file $head" >&4
$PROG file $head >.result || return 1
cat .result | perl -e '
my %expect = (@ARGV);

9
t/t8003-pickaxe.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
test_description='git-pickaxe'
. ./test-lib.sh
PROG='git pickaxe -c'
. ../annotate-tests.sh
test_done