https://david-kerwick.github.io/2016/05/25/using-bitbucket-pipelines-to-run-sonarqube-analysis.html
Arquivo da categoria: Bitbucket
DEPLOY COM BITBUCKET – PIPELINE
Create a tag in Git repository
Creating tags from the command line
To create a tag on your current branch, run this:
git tag <tagname>
This will create a local
tag with the current state of the branch you are on. When pushing to your remote repo, tags are NOT included by default. You will need to explicitly say that you want to push your tags to your remote repo:
git push origin --tags
From the official Linux Kernel Git documentation for git push
:
--tags
All refs under refs/tags are pushed, in addition to refspecs explicitly listed on the command line.
Or if you just want to push a single tag:
git push origin <tag>
See also my answer to Push a tag to a remote repository using Git? for more details about that syntax above.
https://stackoverflow.com/questions/18216991/create-a-tag-in-github-repository
Mudar de Branch com Git
Quando criar um branch pelo sistema do bitbucket, basta que você entre no seu projeto pelo terminal e execute esse comando:
git fetch && git checkout branch_exemplo
Então você passará a usar o seu novo branch.