How do I use github tags to create downloads for my project?
Are there any special keywords or formats that need to be used? I've created a tag and pushed the latest version but it's not showing on github, nor has a a download been created (the one there is a manual upload by me).
I'm using GitX locally.
He开发者_如何学Pythonre is my repo: https://github.com/gingerbeardman/monkey.tmbundle
Any ideas?
Tags aren't pushed by default; try a git push --tags <remote>
. That will sync all of your tags. If you want to push a single tag, use git push <remote> <tagname>
.
精彩评论