...
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
# Current repo tag
$ git describe --tags
v2.13.1
# List of all tags
$ git tag
...
v2.13.1 # current version
v2.13.2
v2.13.3
v2.13.4
v2.14.0
v2.14.1
v2.14.2
v2.15.0 # final version
# Edit the tag
$ git checkout v2.13.2
Previous HEAD position was a923f4e7 Update kube_version_min_required and cleanup hashes for release (#7160)
HEAD is now at 3d6b9d6c Update hashes and set default to 1.17.7 (#6286) |
...