提交 635f67f9 编写于 作者: L Linus Torvalds

Teach git-pull-script about pulling tags

上级 d6771bd0
......@@ -4,10 +4,15 @@ merge_repo=$1
merge_name=$(echo "$1" | sed 's:\.git/*$::')
merge_head=HEAD
type=head
if [ "$2" = "tag" ]; then
type=tag
shift
fi
if [ "$2" ]
then
merge_name="'$2' branch of $merge_name"
merge_head="refs/heads/$2"
merge_name="$type '$2' of $merge_name"
merge_head="refs/{$type}s/$2"
fi
: ${GIT_DIR=.git}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册