diff options
author | Lukas Sandström <lukass@etek.chalmers.se> | 2006-06-13 22:22:00 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-18 22:12:20 -0700 |
commit | 854b4629f97fb216a91805706cd61b33beb49172 (patch) | |
tree | cc664bff9638c8e002648704b46108c2bac911e1 /git.c | |
parent | fefe81c9964a12394d6ea81ce474ff402f0eb070 (diff) | |
download | git-854b4629f97fb216a91805706cd61b33beb49172.tar.gz git-854b4629f97fb216a91805706cd61b33beb49172.tar.xz |
Make git-update-ref 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
@@ -183,7 +183,8 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "mailsplit", cmd_mailsplit }, { "mailinfo", cmd_mailinfo }, { "stripspace", cmd_stripspace }, - { "update-index", cmd_update_index } + { "update-index", cmd_update_index }, + { "update-ref", cmd_update_ref } }; int i; |