]> git.ipfire.org Git - thirdparty/git.git/commit
Provide more meaningful output from 'git init-db'.
authorShawn O. Pearce <spearce@spearce.org>
Fri, 15 Dec 2006 05:44:58 +0000 (00:44 -0500)
committerJunio C Hamano <junkio@cox.net>
Sat, 16 Dec 2006 06:31:00 +0000 (22:31 -0800)
commitef0a89a604acb7fc2e3c08566641b95b23d87fd6
tree1e43fb48444e3f83867e0fca83112058c6d26e7d
parentebd124c6783da5e064963611ee17741cd173f6b5
Provide more meaningful output from 'git init-db'.

Back in the old days of Git when people messed around with their
GIT_DIR environment variable more often it was nice to know whether
or not git-init-db created a .git directory or used GIT_DIR.
As most users at that time were rather technical UNIXy folk the
message "defaulting to local storage area" made sense to some and
seemed reasonable.

But it doesn't really convey any meaning to the new Git user,
as they don't know what a 'local storage area is' nor do they
know enough about Git to care.  It also really doesn't tell the
experienced Git user a whole lot about the command they just ran,
especially if they might be reinitializing an existing repository
(e.g. to update hooks).

So now we print out what we did ("Initialized empty" or
"Reinitialized existing"), what type of repository ("" or "shared"),
and what location the repository will be in ("$GIT_DIR").

Suggested in part by Andy Parkins in his Git 'niggles' list
(<200612132237.10051.andyparkins@gmail.com>).

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/core-tutorial.txt
Documentation/tutorial-2.txt
Documentation/tutorial.txt
builtin-init-db.c