X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git.c;h=bc463c98eac42125c68a380614ec1779e5e81b93;hb=efd0201684c6e9bf663811dc849590b8fe27b8b2;hp=d29505c4c92f56f1d9829e53d56b8ed7b915d587;hpb=51ce34b9923d9b119ac53414584f80e05520abea;p=git.git diff --git a/git.c b/git.c index d29505c4..bc463c98 100644 --- a/git.c +++ b/git.c @@ -47,11 +47,16 @@ 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 }, + { "upload-tar", cmd_upload_tar }, { "check-ref-format", cmd_check_ref_format }, { "ls-files", cmd_ls_files }, { "ls-tree", cmd_ls_tree }, @@ -59,7 +64,13 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "read-tree", cmd_read_tree }, { "commit-tree", cmd_commit_tree }, { "apply", cmd_apply }, - { "show-branch", cmd_show_branch } + { "show-branch", cmd_show_branch }, + { "diff-files", cmd_diff_files }, + { "diff-index", cmd_diff_index }, + { "diff-stages", cmd_diff_stages }, + { "diff-tree", cmd_diff_tree }, + { "cat-file", cmd_cat_file }, + { "rev-parse", cmd_rev_parse } }; int i;