开发者

How do I use github tags to create downloads for my project?

开发者 https://www.devze.com 2023-02-17 02:59 出处:网络
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

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>.

0

精彩评论

暂无评论...
验证码 换一张
取 消