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

后端 未结 1 791
甜味超标
甜味超标 2021-02-05 10:32

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 ve

相关标签:
1条回答
  • 2021-02-05 11:05

    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 讨论(0)
提交回复
热议问题