diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2006-06-03 18:45:43 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-03 23:45:30 -0700 |
commit | 895f10c3b596ef955c7f252717e5b4668530c569 (patch) | |
tree | ac016fe82954e47e55316e53f99c193493c30c96 /git.c | |
parent | ea5aeb07e9ad92743eaaf216360340b70d4c3bbd (diff) | |
download | git-895f10c3b596ef955c7f252717e5b4668530c569.tar.gz |
Builtin git-rev-parse.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
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
@@ -69,7 +69,8 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "diff-index", cmd_diff_index }, { "diff-stages", cmd_diff_stages }, { "diff-tree", cmd_diff_tree }, - { "cat-file", cmd_cat_file } + { "cat-file", cmd_cat_file }, + { "rev-parse", cmd_rev_parse } }; int i; |