Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleGit commands
collapsetrue
# Current repo tag
$ git describe --tagstag
v2.13.1-115-g68d18daf

# 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)

...