Files
30-seconds-of-code/snippets/current-branch-name.md
2023-04-28 22:15:54 +03:00

379 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Get the current branch name snippet
branch
cherry-trees 2021-04-13T21:10:59+03:00

Prints the current branch name.

  • Use git rev-parse --abbrev-ref HEAD to print the name of the current branch.
git rev-parse --abbrev-ref HEAD
git checkout patch-1
git rev-parse --abbrev-ref HEAD # Prints `patch-1`