From: Linus Torvalds Date: Thu, 23 Jun 2005 15:59:00 +0000 (-0700) Subject: Make "git fetch" able to fetch a named tag X-Git-Tag: v0.99~198 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5fca669f1933ca3ef5f93ee2bf8871183bc2a7c2;p=git.git Make "git fetch" able to fetch a named tag Use "git fetch tag " to get the named tag and everything it points to. --- diff --git a/git-fetch-script b/git-fetch-script index 2e62f001b..fb4a53776 100755 --- a/git-fetch-script +++ b/git-fetch-script @@ -1,7 +1,13 @@ #!/bin/sh # +destination=FETCH_HEAD + merge_repo=$1 merge_name=${2:-HEAD} +if [ "$2" = "tag" ]; then + merge_name="refs/tags/$3" + destination="$merge_name" +fi : ${GIT_DIR=.git} : ${GIT_OBJECT_DIRECTORY="${SHA1_FILE_DIRECTORY-"$GIT_DIR/objects"}"} @@ -35,7 +41,7 @@ download_objects () { } echo "Getting remote $merge_name" -download_one "$merge_repo/$merge_name" "$GIT_DIR"/FETCH_HEAD || exit 1 +download_one "$merge_repo/$merge_name" "$GIT_DIR/$destination" || exit 1 echo "Getting object database" -download_objects "$merge_repo" "$(cat "$GIT_DIR"/FETCH_HEAD)" || exit 1 +download_objects "$merge_repo" "$(cat "$GIT_DIR/$destination")" || exit 1