diff options
author | Timo Hirvonen <tihirvon@gmail.com> | 2006-05-24 14:08:46 +0300 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-24 13:35:35 -0700 |
commit | f81daefe56b3c97b93a851e1ada14eeca0dea47a (patch) | |
tree | b96c334203c668286e57e794be53379025635870 /git.c | |
parent | d48f7168619932a389341f1f0c904ab6dc117b5e (diff) | |
download | git-f81daefe56b3c97b93a851e1ada14eeca0dea47a.tar.gz git-f81daefe56b3c97b93a851e1ada14eeca0dea47a.tar.xz |
Builtin git-cat-file
Signed-off-by: Timo Hirvonen <tihirvon@gmail.com>
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
@@ -68,7 +68,8 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "diff-files", cmd_diff_files }, { "diff-index", cmd_diff_index }, { "diff-stages", cmd_diff_stages }, - { "diff-tree", cmd_diff_tree } + { "diff-tree", cmd_diff_tree }, + { "cat-file", cmd_cat_file } }; int i; |