Skip to content

Solve publish problems

leo zhang edited this page Dec 4, 2019 · 1 revision

If you have problems while releasing. The following may help

# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName