Skip to content

Commit ae63fff

Browse files
committed
Add how to fix a tag
1 parent fcf56d8 commit ae63fff

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docs/development/packaging.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,11 @@ Through git workflow:
2828
1. Optionally change the version number in `metadata.txt`
2929
1. Apply a git tag with the relevant version: `git tag -a X.y.z {git commit hash} -m "This version rocks!"`
3030
1. Push tag to main branch: `git push origin X.y.z`
31+
32+
### Ups?
33+
34+
```sh
35+
git tag -d old
36+
git push origin :refs/tags/old
37+
git push --tags
38+
```

0 commit comments

Comments
 (0)