summaryrefslogtreecommitdiff
path: root/upload-pack.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2009-03-04 08:32:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-03-05 04:37:21 (GMT)
commit05ac6b34e2c2adda5cb85dd0bdacb47fe5db953e (patch)
tree9c71ec4ed8d1c05c32c67b67e9750dc77f0333b8 /upload-pack.c
parentaec0c1bbfb2d42659bb710bd79f8228ac59e1b0c (diff)
downloadgit-05ac6b34e2c2adda5cb85dd0bdacb47fe5db953e.zip
git-05ac6b34e2c2adda5cb85dd0bdacb47fe5db953e.tar.gz
git-05ac6b34e2c2adda5cb85dd0bdacb47fe5db953e.tar.bz2
improve missing repository error message
Certain remote commands, when asked to do something in a particular directory that was not actually a git repository, would say "unable to chdir or not a git archive". The "chdir" bit is an unnecessary detail, and the term "git archive" is much less common these days than "git repository". So let's switch them all to: fatal: '%s' does not appear to be a git repository Signed-off-by: Jeff King <peff@peff.net> Acked-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'upload-pack.c')
-rw-r--r--upload-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/upload-pack.c b/upload-pack.c
index 19c24db..e15ebdc 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -645,7 +645,7 @@ int main(int argc, char **argv)
dir = argv[i];
if (!enter_repo(dir, strict))
- die("'%s': unable to chdir or not a git archive", dir);
+ die("'%s' does not appear to be a git repository", dir);
if (is_repository_shallow())
die("attempt to fetch/clone from a shallow repository");
if (getenv("GIT_DEBUG_SEND_PACK"))