31

我即将完成将“哑快照”转换为 git 的繁琐过程。这个过程进展顺利(多亏了这个重命名过程),但现在我意识到我创建的一些分支不值得一个branch,而是一个tag.

由于一切仍然是本地的(从未推送到存储库),我发现这个问题(和相关的答案)比我喜欢的要麻烦一些,所以我想知道我是否可以通过一些简单的“convert-from-branch-to”来走捷径-tag”命令?

有没有这么简单的命令可以将分支转换为标签?

(我知道我可以让它保持原样,但我真的很喜欢gitk突出标签的方式,帮助我轻松识别它们)。

更新:感谢@Andy 在下面的回答,我设法想出了一个 shell 脚本,它可以方便、轻松地完成这一切。我分享这个脚本是为了所有人的利益,并特别感谢这个伟大的社区,他们让我从 CVS 迁移到 git 成为可能:

#!/bin/sh

BRANCHNAME=$1
TAGNAME=$2

echo "Request to convert the branch ${BRANCHNAME} to a tag with the same name accepted."
echo "Processing..."
echo " "

git show-ref --verify --quiet refs/heads/${BRANCHNAME}
# $? == 0 means local branch with <branch-name> exists. 

if [ $? == 0 ]; then
   git checkout ${BRANCHNAME}
   git tag ${BRANCHNAME}
   git checkout master
   git branch ${BRANCHNAME} -d
   echo " "
   echo "Updated list branches, sorted chronologically: "
   echo "---------------------------------------------- "
   git log --no-walk --date-order --oneline --decorate $(git rev-list --branches --no-walk) | cut -d "(" -f 2 | cut -d ")" -f 1
else
   echo "Sorry. The branch ${BRANCHNAME} does NOT seem to exist. Exiting."
fi
4

3 回答 3

41

给出的答案基本正确。

由于标签和分支只是对象的名称,因此有一种更简单的方法,无需触及当前工作区域:

git tag <name_for_tag> refs/heads/<branch_name> # or just git tag <name_for_tag> <branch_name>
git branch -d <branch_name>

甚至根本不接触本地存储库就可以对远程服务器执行此操作:

git push origin origin/<branch_name>:refs/tags/<tag_name>
git push origin :refs/heads/<branch_name>
于 2013-05-06T17:58:32.220 回答
18

这些分支是否有单独的开发?(您链接到的帖子似乎在这些分支上没有开发)如果没有开发,您可以:

  1. 结帐分支git checkout branchName
  2. 用 标记它git tag tagName
  3. 切换回 master git checkout master
  4. 最后,用 . 删除原来的分支git branch branchName -d

如果分支上有开发,也可以这样做,但您需要-D使用-d. 不过,我不是 git pro,所以不确定这是否是离开分支的“可接受”方式。

于 2011-07-12T15:35:30.970 回答
2

根据安迪的回答,我制作了一个别名,也可以用于同一件事:

[alias]
branch2tag = "!sh -c 'set -e;git tag $1 refs/heads/$1;git branch -D $1' -"

用法

如果您想将分支 bug-2483 转换为标签(而您的主分支是主分支),请编写:

git branch2tag bug-2483 master

更新 1

更改以反映 kauppi 提出的解决方案。

于 2013-05-06T17:42:21.160 回答