Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git - push tags in Netbeans

Tags:

git

netbeans

I want to push git tags in netbeans. In console I can use it with git push origin --tags.

How can I do it from the IDE? I'm using Netbeans 8.0.

like image 816
Kelu Thatsall Avatar asked Jun 24 '14 10:06

Kelu Thatsall


People also ask

How do I push a git tag?

This process is just like sharing remote branches — you can run git push origin <tagname> . If you have a lot of tags that you want to push up at once, you can also use the --tags option to the git push command. This will transfer all of your tags to the remote server that are not already there.

How push and commit in NetBeans?

In the Projects window, right-click the file you want to commit. [start=2] . In the context menu, choose Git > Commit .

How do I add a tag to a pushed commit?

Right click on the commit you want to tag, and click Create Tag at this version... Back to Log Message dialog, right click on that tag label, click Push "tag_name"...

Does a git push send tags?

Sharing tags is similar to pushing branches. By default, git push will not push tags. Tags have to be explicitly passed to git push .


1 Answers

Well - it's quite a while ago since you asked that question but I just ran into that question as well and found an answer. Hope it will help somebody facing the same issue:

Right click your project > Git > Remote > Push ... > Select remote repository > Your tags will appear here: Select tags to push!! > Push

like image 94
tworabbits Avatar answered Nov 06 '22 03:11

tworabbits