diff options
author | Junio C Hamano <junkio@cox.net> | 2006-06-18 22:13:11 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-18 22:13:11 -0700 |
commit | 69c18d887253a8fd44df232a604ba3dac3d371a5 (patch) | |
tree | d2f85c400917443d39a9d2c7952010664ff53a2f /git.c | |
parent | Merge branch 'jn/web' into next (diff) | |
parent | Make git-update-ref a builtin (diff) | |
download | tgif-69c18d887253a8fd44df232a604ba3dac3d371a5.tar.xz |
Merge early parts of branch 'ls/am'
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -178,7 +178,13 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "diff-stages", cmd_diff_stages }, { "diff-tree", cmd_diff_tree }, { "cat-file", cmd_cat_file }, - { "rev-parse", cmd_rev_parse } + { "rev-parse", cmd_rev_parse }, + { "write-tree", cmd_write_tree }, + { "mailsplit", cmd_mailsplit }, + { "mailinfo", cmd_mailinfo }, + { "stripspace", cmd_stripspace }, + { "update-index", cmd_update_index }, + { "update-ref", cmd_update_ref } }; int i; |