Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to push Git TAGs from Intellij without using the console?

Is there a way to push git tags from intellij without bringing up the console and typing git push origin master --tags

like image 547
Mateus Viccari Avatar asked Mar 06 '15 18:03

Mateus Viccari


People also ask

How do I checkout tag in IntelliJ?

Locate the tagged commit that you want to checkout, right-click it and select Checkout Revision from the context menu. Invoke the branches popup, click Checkout Tag or Revision and type in the tag name (IntelliJ IDEA provides a list of matching tags and revisions as you type).

Can I push to a tag in Git?

Sharing Tagsgit push <remote> --tags will push both lightweight and annotated tags. There is currently no option to push only lightweight tags, but if you use git push <remote> --follow-tags only annotated tags will be pushed to the remote.

How do you push all tags?

Push all git tags to remote And if you want to push all tags from your local to the remote then add "--tags" to the git command and it will push all tags to the remote.


1 Answers

You can create a tag in VCS -> Git -> Tag... menu.

Then open the push dialog with VCS -> Git -> Push and activate the checkbox "Push Tags".

like image 65
uwolfer Avatar answered Sep 18 '22 14:09

uwolfer