diff options
author | Timo Hirvonen <tihirvon@gmail.com> | 2006-05-19 13:03:57 +0300 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-19 15:31:20 -0700 |
commit | c3c8835fbb182d971d71939b9a3ec7c8b86d6caf (patch) | |
tree | 51e131c98ede9de99840104851c6615a2e57e142 /git.c | |
parent | 8090c08e1e90274d35bbf06238d2933759f3a1bb (diff) | |
download | git-c3c8835fbb182d971d71939b9a3ec7c8b86d6caf.tar.gz git-c3c8835fbb182d971d71939b9a3ec7c8b86d6caf.tar.xz |
Builtin git-init-db
Basically this just renames init-db.c to builtin-init-db.c and makes
some strings const.
Signed-off-by: Timo Hirvonen <tihirvon@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -51,6 +51,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "diff", cmd_diff }, { "grep", cmd_grep }, { "rev-list", cmd_rev_list }, + { "init-db", cmd_init_db }, { "check-ref-format", cmd_check_ref_format } }; int i; |