X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git.c;h=bc463c98eac42125c68a380614ec1779e5e81b93;hb=ce0bd64299ae148ef61a63edcac635de41254cb5;hp=38e84618dcfdc4bd91a5aec6155696416bace6bd;hpb=1af0d11283ee34127a4ee877fb753db021d399ea;p=git.git diff --git a/git.c b/git.c index 38e84618..bc463c98 100644 --- a/git.c +++ b/git.c @@ -47,9 +47,12 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "whatchanged", cmd_whatchanged }, { "show", cmd_show }, { "push", cmd_push }, + { "format-patch", cmd_format_patch }, { "count-objects", cmd_count_objects }, { "diff", cmd_diff }, { "grep", cmd_grep }, + { "rm", cmd_rm }, + { "add", cmd_add }, { "rev-list", cmd_rev_list }, { "init-db", cmd_init_db }, { "tar-tree", cmd_tar_tree }, @@ -65,7 +68,9 @@ 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 }, + { "rev-parse", cmd_rev_parse } }; int i;