diff options
author | Junio C Hamano <junkio@cox.net> | 2006-11-08 18:47:54 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-08 18:49:37 -0800 |
commit | acca687fa9db8eaa380b65d63c3f0d4364892acf (patch) | |
tree | 93190f338cbb862eacaf8bddf09e93af458783a7 /git.c | |
parent | 659db3f673fe199bad6ce9cc625d3a1b098bfbcf (diff) | |
download | git-acca687fa9db8eaa380b65d63c3f0d4364892acf.tar.gz git-acca687fa9db8eaa380b65d63c3f0d4364892acf.tar.xz |
git-pickaxe: retire pickaxe
Just make it take over blame's place. Documentation and command
have all stopped mentioning "git-pickaxe". The built-in synonym
is left in the command table, so you can still say "git pickaxe",
but it probably is a good idea to retire it as well.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -222,6 +222,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "annotate", cmd_annotate, }, { "apply", cmd_apply }, { "archive", cmd_archive }, + { "blame", cmd_blame, RUN_SETUP | USE_PAGER }, { "branch", cmd_branch, RUN_SETUP }, { "cat-file", cmd_cat_file, RUN_SETUP }, { "checkout-index", cmd_checkout_index, RUN_SETUP }, @@ -249,7 +250,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 | USE_PAGER }, + { "pickaxe", cmd_blame, RUN_SETUP | USE_PAGER }, { "prune", cmd_prune, RUN_SETUP }, { "prune-packed", cmd_prune_packed, RUN_SETUP }, { "push", cmd_push, RUN_SETUP }, |