aboutsummaryrefslogtreecommitdiff
path: root/git-fetch.sh
diff options
context:
space:
mode:
authorAlexandre Julliard <julliard@winehq.org>2006-11-24 15:59:12 +0100
committerJunio C Hamano <junkio@cox.net>2006-11-24 15:42:50 -0800
commitd158631549b87e11f2415622e421546539b09b67 (patch)
tree0def0ce1e37ac244b366e721b5528f8c3e54c368 /git-fetch.sh
parent1f2de769812f0adea598269d788c9c75d23e80b8 (diff)
downloadgit-d158631549b87e11f2415622e421546539b09b67.tar.gz
git-d158631549b87e11f2415622e421546539b09b67.tar.xz
git-fetch: Reset shallow_depth before auto-following tags.
Otherwise fetching the tags could also fetch commits up to the specified depth, which isn't the expected behavior. Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-fetch.sh')
-rwxr-xr-xgit-fetch.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/git-fetch.sh b/git-fetch.sh
index 0b1e6d107..f0645d97c 100755
--- a/git-fetch.sh
+++ b/git-fetch.sh
@@ -461,6 +461,8 @@ case "$no_tags$tags" in
case "$taglist" in
'') ;;
?*)
+ # do not deepen a shallow tree when following tags
+ shallow_depth=
fetch_main "$taglist" ;;
esac
esac