git push --delete origin v1.0Local side:
git tag --delete v1.0Multiple remote tags
git push --delete origin tag1 tag2Multiple local tags
git tag -d tag1 tag2
git push --delete origin v1.0git tag --delete v1.0git push --delete origin tag1 tag2git tag -d tag1 tag2We can use git config --global alias.[alias] to "reduce the long and long git subcommands that are often executed" into simplified aliases. So you can also add your frequently used git commands to the global git alias through the git alias setting. Let's take a look at my practical example of how to reduce long subcommands into easy-to-use aliases.
How to display your own version control through git commands? These commands are for reference only, at least the author name should be changed. --author parameter, can also be mailbox
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.
No Comment
Post your comment