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

后端 未结 1 713
甜味超标
甜味超标 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 . That will sync all of your tags. If you want to push a single tag, use git push .

    0 讨论(0)
提交回复
热议问题