This is the command git-rename-tag that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator
PROGRAM:
NAME
git-rename-tag - Rename a tag
SYNOPSIS
git-rename-tag <old-tag-name> <new-tag-name>
DESCRIPTION
Rename a tag (locally and remotely)
OPTIONS
<old-tag-name>
The name of the tag you want to rename.
<new-tag-name>
The new name of the tag.
EXAMPLES
$ git tag test
$ git push --tags
Total 0 (delta 0), reused 0 (delta 0)
To [email protected]:myuser/myrepository.git
* [new tag] test -> test
$ git tag
test
$ git rename-tag test test2
Deleted tag ´test´ (was 1111111)
Total 0 (delta 0), reused 0 (delta 0)
To [email protected]:myuser/myrepository.git
* [new tag] test2 -> test2
remote: warning: Deleting a non-existent ref.
To [email protected]:myuser/myrepository.git
- [deleted] refs/tag/test
$ git tag
test2
Use git-rename-tag online using onworks.net services