From: Junio C Hamano Date: Mon, 4 Dec 2006 22:24:12 +0000 (-0800) Subject: receive-pack: do not insist on fast-forward outside refs/heads/ X-Git-Tag: v1.4.4.2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=562cefbdbfaeb92f91c961c67960a93a7772220c;p=git.git receive-pack: do not insist on fast-forward outside refs/heads/ Especially refs/tags/ hierarchy should match what git-fetch checks. Signed-off-by: Junio C Hamano --- diff --git a/receive-pack.c b/receive-pack.c index d56898c9b..f18915117 100644 --- a/receive-pack.c +++ b/receive-pack.c @@ -118,7 +118,8 @@ static int update(struct command *cmd) return error("unpack should have generated %s, " "but I can't find it!", new_hex); } - if (deny_non_fast_forwards && !is_null_sha1(old_sha1)) { + if (deny_non_fast_forwards && !is_null_sha1(old_sha1) && + !strncmp(name, "refs/heads/", 11)) { struct commit *old_commit, *new_commit; struct commit_list *bases, *ent;