Create a tag in a GitHub repository

后端 未结 7 1587
逝去的感伤
逝去的感伤 2020-12-02 03:04

I have a repository in GitHub and I need to tag it.
I tagged in a shell, but on GitHub, it is not showing up.

Do I have to do

7条回答
  •  余生分开走
    2020-12-02 03:39

    You just have to push the tag after you run the git tag 2.0 command.

    So just do git push --tags now.

提交回复
热议问题