Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating Git branch tag in VSO or VS2015

Is there a way to create a branch tag in vso?

Also, I've tried creating a tag in VS2015 and push a change commit to vso, but I'm not seeing the tag in vso. Just wondering if this VS2015 <-> VSO tagging feature is in place?

like image 340
SimonSays Avatar asked Nov 18 '15 18:11

SimonSays


1 Answers

The tag you created in VS2015 is in local repository. VS2015 cannot push the tag to remote repository for now. You need to push the tags to remote repository by following command manually:

git push --tags

After executing this command, you will see the tags in VSO. enter image description here

like image 116
Eddie Chen - MSFT Avatar answered Oct 26 '22 04:10

Eddie Chen - MSFT