In a Unix or GNU scripting environment (e.g. a Linux distro, Cygwin, OSX), what is the best way to determine which Git branch is currently checked out in a working directory?

One use of this technique would be automatically labeling a release (like svnversion would do with Subversion).

Please also see my related question: How to programmatically determine whether a Git checkout is a tag, and if so what is the tag name?

link|improve this question

feedback

7 Answers

up vote 53 down vote accepted

The correct solution is to take a peek at contrib/completions/git-completion.bash does that for bash prompt in __git_ps1. Removing all extras like selecting how to describe detached HEAD situation, i.e. when we are on unnamed branch, it is:

branch_name="$(git symbolic-ref HEAD 2>/dev/null)" ||
branch_name="(unnamed branch)"     # detached HEAD

branch_name=${branch_name##refs/heads/}

git symbolic-ref is used to extract fully qualified branch name from symbolic reference; we use it for HEAD, which is currently checked out branch.

Alternate solution could be:

branch_name=$(git symbolic-ref -q HEAD)
branch_name=${branch_name##refs/heads/}
branch_name=${branch_name:-HEAD}

where in last line we deal with the detached HEAD situation, using simply "HEAD" to denote such situation.

link|improve this answer
+ for $(git symbolic-ref -q HEAD), I'm using this for an automation script # head_sha1=$(cat .git/$(git symbolic-ref HEAD)); # echo $head_sha1 9ed68f221e158ce90f8a36832d981befa6e75179 works great, many thanks – Fire Crow Nov 1 '09 at 3:02
5  
Do not use cat .git/refs/heads/branch; use git rev-parse --verify refs/heads/branch. Refs can be packed, and the solution with cat would fail. – Jakub Narębski Nov 1 '09 at 9:06
1  
A challenge for all bash string artists out there: surely there must be a nice way of doing this in less than three variable assignments? :-D – conny Jun 23 '10 at 16:32
8  
@conny git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3 should get you branch name in one go – KiRPiCH Nov 2 '11 at 0:30
1  
@Thr4wn it removes (trim) the beginning of the string, removing here 'refs/heads/' from $branch_name string value. See thegeekstuff.com/2010/07/bash-string-manipulation or tldp.org/LDP/abs/html/string-manipulation.html – VonC May 12 at 10:26
show 3 more comments
feedback

adapting the accepted answer to windows powershell:

Split-Path -Leaf (git symbolic-ref HEAD)
link|improve this answer
feedback

If you're using the old NT command line, you can use the following:

@for /f "usebackq" %i in (`git symbolic-ref -q HEAD`) do @echo %~ni

To use in a batch file, you'll have to double the %'s:

@for /f "usebackq" %%i in (`git symbolic-ref -q HEAD`) do @echo %%~ni
link|improve this answer
feedback

Here is what I do:

git branch | sed --quiet 's/* \(.*\)/\1/p'

The output would look like this:

$ git branch | sed --quiet 's/* \(.*\)/\1/p'
master
$
link|improve this answer
2  
git-branch is porcelain (user interface) command, and its output should not be used in scripts – Jakub Narębski Oct 20 '09 at 9:38
feedback

This one works for me. The --no-color part is, or can be, important if you want a plain string back.

git branch --no-color | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
link|improve this answer
3  
git-branch is porcelain (user interface) command, and its output should not be used in scripts. Although you get bonus points for '--no-color'. – Jakub Narębski Oct 20 '09 at 9:45
feedback

Someone mentioned doing it in bash with less than three assignments... how about some messy control flow like this:

branch_name="$(b=$(git symbolic-ref -q HEAD); { [ -n "$b" ] && echo ${b##refs/heads/}; } || echo HEAD)"
link|improve this answer
feedback

That's one solution. If you add it to your .bashrc, it'll display the current branch in the console.

# git branch
parse_git_branch() {
    git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1) /'
}
$PS1="\$(parse_git_branch)$PS1"

However it's pretty limited. But there is a great project called git sh, which is doing exactly that (and much more).

link|improve this answer
Woah, that's crazy. That is exactly the code I had in my .bashrc. I shortened it to use GNU sed options and I kept thinking, this doesn't look like my code. I'm curious, was the code you posted from some sort of public example? – JasonSmith Oct 20 '09 at 8:35
Also +1 because, while I haven't tested, I'm pretty sure your answer is non-GNU compatible so it might be preferred on Darwin, Solaris, etc. – JasonSmith Oct 20 '09 at 8:35
This code is from GitHub : github.com/guides/put-your-git-branch-name-in-your-shell-prompt I've used only with Darwin and Ubuntu. It works well on both of them. – Damien MATHIEU Oct 20 '09 at 8:48
3  
git-branch is porcelain (user interface) command, and its output should not be used in scripts – Jakub Narębski Oct 20 '09 at 9:39
feedback

Your Answer

 
or
required, but never shown

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