我即将完成将“哑快照”转换为 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