diff options
author | Lukas Sandström <lukass@etek.chalmers.se> | 2006-06-13 22:21:57 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-18 22:12:19 -0700 |
commit | fefe81c9964a12394d6ea81ce474ff402f0eb070 (patch) | |
tree | 61f39acdcfc69d903ea1006898a508016b0120ee /git.c | |
parent | 7499c996156ea99702fe13e203b97ae60d8868ad (diff) | |
download | git-fefe81c9964a12394d6ea81ce474ff402f0eb070.tar.gz git-fefe81c9964a12394d6ea81ce474ff402f0eb070.tar.xz |
Make git-update-index a builtin
Signed-off-by: Lukas Sandström <lukass@etek.chalmers.se>
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
@@ -182,7 +182,8 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "write-tree", cmd_write_tree }, { "mailsplit", cmd_mailsplit }, { "mailinfo", cmd_mailinfo }, - { "stripspace", cmd_stripspace } + { "stripspace", cmd_stripspace }, + { "update-index", cmd_update_index } }; int i; |