diff options
author | Nicolas Pitre <nico@cam.org> | 2007-01-12 16:01:46 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-12 13:36:16 -0800 |
commit | 5c94f87e6b17cab5d3b87998d6c907745cb6f5a4 (patch) | |
tree | 814570782529656b1f5869525feadcc17996de9d /git-p4import.py | |
parent | 120b0dfbed148461c4e1349d12a1b7913545260e (diff) | |
download | git-5c94f87e6b17cab5d3b87998d6c907745cb6f5a4.tar.gz |
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>
Diffstat (limited to 'git-p4import.py')
-rw-r--r-- | git-p4import.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-p4import.py b/git-p4import.py index 908941dd77..5c56cace0e 100644 --- a/git-p4import.py +++ b/git-p4import.py @@ -163,7 +163,7 @@ class git_command: self.gitdir = self.get_single("rev-parse --git-dir") report(2, "gdir:", self.gitdir) except: - die("Not a git repository... did you forget to \"git init-db\" ?") + die("Not a git repository... did you forget to \"git init\" ?") try: self.cdup = self.get_single("rev-parse --show-cdup") if self.cdup != "": |