Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to push tags to remote git repository with PHPStorm?

Tags:

git

phpstorm

I use PHPStorm IDE in my everyday development. It's pretty well integrated with many CVS. But when I start using git I've found that plenty of git functions are not supported. Or I just missed something. That's why I ask.

Is there any way to push tags (git push --tags) with PHPStorm?

When I run

CVS | Git | Tag Files

tag is created and I even can see it in PHPStorm git log. But it exists only locally. Nothing is pushed to remote. If I try to make Push after tag creation IDE says "Nothing to push".

like image 792
Mike Milkman Avatar asked Aug 22 '12 08:08

Mike Milkman


1 Answers

It's in the "Push Commits" dialog

VCS | Git | Push → ☑ Push Tags

enter image description here

See: Jetbrains Ticket IDEA-77483 - GIT "Push tags" missing from push dialog

like image 58
flu Avatar answered Sep 29 '22 23:09

flu