joseluisq / gitnow

Speed up your Git workflow. :tropical_fish:
https://github.com/joseluisq/gitnow
MIT License
391 stars 25 forks source link

Send tags #17

Closed juwishmaster closed 4 years ago

juwishmaster commented 4 years ago

You can also add a command send to push all tags.

git push <remote> --tags

Or better on all remotes using git remote -v command.

Best regard Willy Micieli

joseluisq commented 4 years ago

This is already managed by the push command because supports additional Git arguments like --tags. https://github.com/joseluisq/gitnow#push

Take a look:

~> push --tags
🚀 Pushing changes...
Mode: Manual

Total 0 (delta 0), reused 0 (delta 0)
To https://github.com/joseluisq/gitnow.git
 * [new tag]         abcdef1 -> abcdef1
 * [new tag]         abcdef2 -> abcdef2
 * [new tag]         abcdef3 -> abcdef3
juwishmaster commented 4 years ago

okay it's super !

Best regards Willy Micieli