diff options
author | Nicolas Pitre <nico@cam.org> | 2007-01-07 12:31:29 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-07 18:03:07 -0800 |
commit | 515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c (patch) | |
tree | 5a5643daddda26814cb3769ec63d344143b7ecf0 /Makefile | |
parent | cf2999eb4cbe39d5a40add574be9e5c019df758b (diff) | |
download | git-515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c.tar.gz git-515377ea9ec6192f82a2fa5c5b5b7651d9d6cf6c.tar.xz |
"init-db" can really be just "init"
Make "init" the equivalent of "init-db". This should make first GIT
impression a little more friendly.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,7 +210,7 @@ EXTRA_PROGRAMS = BUILT_INS = \ git-format-patch$X git-show$X git-whatchanged$X git-cherry$X \ - git-get-tar-commit-id$X \ + git-get-tar-commit-id$X git-init$X \ $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS)) # what 'all' will build and 'install' will install, in gitexecdir |