by Devin Yang
(This article was automatically translated.)

Published - 7 years ago ( Updated - 7 years ago )

remote:
git push --delete origin v1.0

Local side:
git tag --delete v1.0

Multiple remote tags
git push --delete origin tag1 tag2

Multiple local tags
git tag -d tag1 tag2

Tags: git

Devin Yang

Feel free to ask me, if you don't get it.:)

No Comment

Post your comment

Login is required to leave comments

Similar Stories


git

How do I delete a remote branch on my GitHub

How do I delete my remote branch on GitHub. First of all, you can use the command to view the origin git remote -v At this time, it may display as follows: origin https://github.com/DevinY/dlaravel.git (fetch) ​​​​​​​​origin https://github.com/DevinY/dlaravel.git (push)

git

Use the git logt command to quickly list your own or others' commits

Here are two commands to quickly list all commits of yourself or others

docker,git

Use docker-compose to quickly build a private git service

How to quickly set up an out-of-the-box Gogs environment? This article introduces the use of docker-compose.yml to quickly establish a gogs environment.