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 /t/t5500-fetch-pack.sh | |
parent | Explain "Not a git repository: '.git'". (diff) | |
download | tgif-5c94f87e6b17cab5d3b87998d6c907745cb6f5a4.tar.xz |
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 't/t5500-fetch-pack.sh')
-rwxr-xr-x | t/t5500-fetch-pack.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5500-fetch-pack.sh b/t/t5500-fetch-pack.sh index 77c3c575d8..ef78df67ea 100755 --- a/t/t5500-fetch-pack.sh +++ b/t/t5500-fetch-pack.sh @@ -97,7 +97,7 @@ pull_to_client () { ( mkdir client && cd client && - git-init-db 2>> log2.txt + git-init 2>> log2.txt ) add A1 |