From: Johannes Schindelin Date: Wed, 2 Jul 2008 17:06:56 +0000 (+0100) Subject: git fetch-pack: do not complain about "no common commits" in an empty repo X-Git-Tag: v1.6.0-rc0~161 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8cb560fc470ee0d94e188d4e9deb14b0c8ac7a91;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/builtin-fetch-pack.c b/builtin-fetch-pack.c index f4dbcf069..2175c6d0d 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;