Skip to content

Commit

Permalink
RELEASING.md: Add not on how to remove an incorrect tag
Browse files Browse the repository at this point in the history
Signed-off-by: Stewart X Addison <[email protected]>
  • Loading branch information
sxa committed Jan 10, 2025
1 parent ededebc commit e0aca97
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,12 @@ git tag -a "jdk-17.0.12-dryrun-ga" jdk-17.0.12+7^{} -m"YYYY.MM release dry run t
git push --tags origin master
```

Note: If you make a mistake with a tag you have already pushed you can undo it with:
```bash
git tag --delete jdk-1.2.3-wrongname
git git push origin :jdk-1.2.3-wrongname
```

**For the new release versions in the OpenJDK HEAD repository adoptium/jdk:**

```bash
Expand Down

0 comments on commit e0aca97

Please sign in to comment.