Skip to content

Commit

Permalink
Git tag related commands
Browse files Browse the repository at this point in the history
  • Loading branch information
wfouche committed Jan 9, 2025
1 parent cd87272 commit ab4e1ef
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion RELEASE.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,21 @@ Once a new release has been uploaded to Maven Central, it can either be dropped

Publishing the release is done by clicking on the **Publish** button. This is an irreversible step.

image::images/image-maven-central-2.png[]
image::images/image-maven-central-2.png[]

[appendix]

== Git Commands

* Sync tags from remote to the local repository
+
[source,bash]
----
$ git fetch --prune --tags
----
* Delete a tag in the local repository
+
[source,bash]
----
$ git tag -d v2.0.9
----

0 comments on commit ab4e1ef

Please sign in to comment.