I can find the current git branch name by doing either of these:

git branch | awk '/^\*/ { print $2 }'
git describe --contains --all HEAD

But when in a detached HEAD state, such as in the post build phase in a Jenkins maven build, these commands doesn't work.

My current working solution is this:

git show-ref | grep $(git show-ref -s -- HEAD) | sed 's|.*/\(.*\)|\1|' | grep -v HEAD | sort | uniq

It displays any branch name that has the last commit on its HEAD tip. This works fine, but I feel that someone with stronger git-fu might have a prettier solution?

link|improve this question

66% accept rate
5  
“current git branch […] in detached HEAD” – Detached HEAD means that there is no current branch, so what branch are you trying to find? – poke May 19 '11 at 17:20
1  
@poke: The OP's example makes it pretty clear what he's looking for. – Jefromi May 20 '11 at 12:09
@Jefromi: I know, but it's not a good idea to ask for something and define that by an already working solution. Not everyone is able to read that to see what kind of result comes out.. – poke May 20 '11 at 12:19
@poke: I'm not just asking for a working solution, I'm asking for the simplest way (or "git way"?) of finding the matching branch name(s). – neu242 May 23 '11 at 6:35
feedback

2 Answers

up vote 3 down vote accepted

A more porcelain way:

git log -n 1 --pretty=%d HEAD

# or equivalently:
git show -s --pretty=%d HEAD

The refs will be listed in the format (HEAD, master) - you'll have to parse it a little bit if you intend to use this in scripts rather than for human consumption.

You could also implement it yourself a little more cleanly:

git for-each-ref --format='%(objectname) %(refname:short)' refs/heads | awk "/^$(git rev-parse HEAD)/ {print \$2}"

with the benefit of getting the candidate refs on separate lines, with no extra characters.

link|improve this answer
feedback
git branch --contains HEAD

Obviously discarding (no branch). Of course, you may get an arbitrary number of branches which could describe the current HEAD (including of course none depending on how you got onto no-branch) which might have be fast-forward merged into the local branch (one of many good reasons why you should always use git merge --no-ff).

link|improve this answer
Doesn't work, it just says "* (no branch)" – neu242 May 23 '11 at 5:56
@neu242: Which command from the other answer returns a useful branch (eg not HEAD) where this command will not (if it is a remote branch add -a)? It works fine during test git checkout @{0} – Seth Robertson May 23 '11 at 12:30
All of @Jefromi's answers, plus my "current working solution" returns useful branch(es) in a detached HEAD state. – neu242 May 24 '11 at 6:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.