X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git.c;h=bc463c98eac42125c68a380614ec1779e5e81b93;hb=ce0bd64299ae148ef61a63edcac635de41254cb5;hp=fd8e9bf7f2b2f7c26984248d0afe2d2143c82cf8;hpb=217542640ed219c980fff2b3c307c4520120f20f;p=git.git diff --git a/git.c b/git.c index fd8e9bf7..bc463c98 100644 --- a/git.c +++ b/git.c @@ -47,14 +47,30 @@ 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 }, - { "rev-list", cmd_rev_list }, - { "check-ref-format", cmd_check_ref_format } + { "check-ref-format", cmd_check_ref_format }, + { "ls-files", cmd_ls_files }, + { "ls-tree", cmd_ls_tree }, + { "tar-tree", cmd_tar_tree }, + { "read-tree", cmd_read_tree }, + { "commit-tree", cmd_commit_tree }, + { "apply", cmd_apply }, + { "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;