commands.sh

git describe

all

Give an object a human-readable name based on an available ref.

More info →

Examples (5)

Create a unique name for the current commit (the name contains the most recent annotated tag, the number of additional commits, and the abbreviated commit hash)

Create a name with 4 digits for the abbreviated commit hash

git describe --abbrev=4

Generate a name with the tag reference path

Describe a Git tag

Create a name for the last commit of a given branch

git describe branch_name
made by @shridhargupta | data from tldr-pages