Files
30-seconds-of-code/snippets/current-branch-name.md
Angelos Chalaris fb4b6fbc8e Update covers
2023-02-16 22:24:37 +02:00

399 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Get the current branch name branch cherry-trees 2021-04-04T21:50:46+03:00 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`