我正在使用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
答案 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