问题描述
如何使用 github 标签为我的项目创建下载?
How do I use github tags to create downloads for my project?
是否需要使用任何特殊的关键字或格式?我创建了一个标签并推送了最新版本,但它没有显示在 github 上,也没有创建下载(我手动上传的那个).
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).
我在本地使用 GitX.
I'm using GitX locally.
这是我的仓库:https://github.com/gingerbeardman/monkey.tmbundle
有什么想法吗?
推荐答案
标签默认不推送;试试 git push --tags <remote>
.这将同步您的所有标签.如果要推送单个标签,请使用 git push <remote><标记名>
.
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>
.
这篇关于如何使用 github 标签为我的项目创建下载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!