A better fix may be to only fetch tags that point to commits that we are downloading, but git-clone doesn't have support for following tags. This will happen automatically on the next git-fetch though. Signed-off-by: Alexandre Julliard <julliard@winehq.org> --- fetch-pack.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/fetch-pack.c b/fetch-pack.c index bb310b6..80979b8 100644 --- a/fetch-pack.c +++ b/fetch-pack.c @@ -342,7 +342,8 @@ static void filter_refs(struct ref **ref if (!memcmp(ref->name, "refs/", 5) && check_ref_format(ref->name + 5)) ; /* trash */ - else if (fetch_all) { + else if (fetch_all && + (!depth || strncmp(ref->name, "refs/tags/", 10) )) { *newtail = ref; ref->next = NULL; newtail = &ref->next; -- 1.4.4.1.ga335e -- Alexandre Julliard julliard@winehq.org - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sat Nov 25 02:00:25 2006
This archive was generated by hypermail 2.1.8 : 2006-11-25 02:12:39 EST