use 'init' instead of 'init-db' for shipped docs and tools
While 'init-db' still is and probably will always remain a valid git command for obvious backward compatibility reasons, it would be a good idea to move shipped tools and docs to using 'init' instead. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:

committed by
Junio C Hamano

parent
120b0dfbed
commit
5c94f87e6b
@ -286,7 +286,7 @@ sub init {
|
||||
|
||||
$SVN_URL = $url;
|
||||
unless (-d $GIT_DIR) {
|
||||
my @init_db = ('init-db');
|
||||
my @init_db = ('init');
|
||||
push @init_db, "--template=$_template" if defined $_template;
|
||||
push @init_db, "--shared" if defined $_shared;
|
||||
command_noisy(@init_db);
|
||||
|
Reference in New Issue
Block a user