Reputation: 7709
Is there a way to push git tags from IntelliJ without bringing up the console and typing git push origin master --tags
?
Upvotes: 56
Views: 28640
Reputation: 3104
In IntelliJ IDEA 2024.1.4 (not sure of the exact version when this was added), you can manage tags from the Git
menu at the top on Mac and Windows.
Upvotes: 0
Reputation: 662
In IntelliJ
You can go to
Make sure you check the push tags checkbox
Upvotes: 11
Reputation: 4516
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".
Upvotes: 96