詹金斯发布后的Git标签

时间:2018-10-30 09:35:59

标签: git maven jenkins gitlab nexus

我正在使用Jenkins,GitLab,Maven和Nexus进行项目。以前,我使用Jenkins Shell命令进行了mvn build和nexus发行工件上传。现在,我必须为其创建Git Tag。有人可以为此提供指导吗?我使用shell命令的所有内容。我可以使用这些命令吗?

git tag -a v0.0.1 -m "0.0.1 tag"
git push origin v0.0.1  

1 个答案:

答案 0 :(得分:0)

这些命令对我有用。

#!/bin/bash
echo tagging with build-$BUILD_NUMBER
git tag -f build-$BUILD_NUMBER
git tag -l 
git remote -v
git remote set-url origin https://$USERNAME:$PASSWORD@hub.jazz.net/git/user/project
git push --tags origin 

关注https://developer.ibm.com/answers/questions/187229/is-there-a-way-to-tag-a-commit-in-git-inside-of-a/