Now I have two tags under my git repository. Let’s take a look at how to push the git tags to Server.
1 | v2850 |
Push a single tag to the server
1 | #git push origin tag_name#Take v2850 for examplegit push origin v2850 |
Push all tags to the server
1 | git push origin --tags |
Others
- Git Pocket Guide