Forrest logo
back to context overview

git-describe

List of commands for git-describe:

  • git-describe:tldr:6611b git-describe: Describe a Git tag.
    $ git describe ${v1-0-0}
    try on your machine
    explain this command
  • git-describe:tldr:7f565 git-describe: 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).
    $ git describe
    try on your machine
    explain this command
  • git-describe:tldr:8147b git-describe: Create a name with 4 digits for the abbreviated commit hash.
    $ git describe --abbrev=${4}
    try on your machine
    explain this command
  • git-describe:tldr:984af git-describe: Generate a name with the tag reference path.
    $ git describe --all
    try on your machine
    explain this command
back to context overview