diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-19 16:00:04 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-19 22:42:49 -0700 |
commit | cee7f245dcaef6dade28464f59420095a9949aac (patch) | |
tree | 8c03deaa5f26293d2a35a886b0f1ce4694bfb86f /git.c | |
parent | e19343ad547e32aaf511b0b38be083e1b3145d4e (diff) | |
download | git-cee7f245dcaef6dade28464f59420095a9949aac.tar.gz |
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>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -245,6 +245,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "mv", cmd_mv, RUN_SETUP }, { "name-rev", cmd_name_rev, RUN_SETUP }, { "pack-objects", cmd_pack_objects, RUN_SETUP }, + { "pickaxe", cmd_pickaxe, RUN_SETUP }, { "prune", cmd_prune, RUN_SETUP }, { "prune-packed", cmd_prune_packed, RUN_SETUP }, { "push", cmd_push, RUN_SETUP }, |