summaryrefslogtreecommitdiff
path: root/builtin-fetch-pack.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2008-07-02 17:06:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-07-02 18:54:22 (GMT)
commit8cb560fc470ee0d94e188d4e9deb14b0c8ac7a91 (patch)
tree46023f9009a6afdac3217982b3f1c042901712ec /builtin-fetch-pack.c
parentdc49308450eac06a66f136b6c49e193bef25a168 (diff)
downloadgit-8cb560fc470ee0d94e188d4e9deb14b0c8ac7a91.zip
git-8cb560fc470ee0d94e188d4e9deb14b0c8ac7a91.tar.gz
git-8cb560fc470ee0d94e188d4e9deb14b0c8ac7a91.tar.bz2
git fetch-pack: do not complain about "no common commits" in an empty repo
If the repo is empty, it is obvious that there are no common commits when fetching from _anywhere_. So there is no use in saying it in that case, and it can even be annoying. Therefore suppress the message unilaterally if the repository is empty prior to the fetch. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-fetch-pack.c')
-rw-r--r--builtin-fetch-pack.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin-fetch-pack.c b/builtin-fetch-pack.c
index f4dbcf0..2175c6d 100644
--- a/builtin-fetch-pack.c
+++ b/builtin-fetch-pack.c
@@ -309,7 +309,8 @@ done:
}
flushes--;
}
- return retval;
+ /* it is no error to fetch into a completely empty repo */
+ return count ? retval : 0;
}
static struct commit_list *complete;