vote up 2 vote down star
1

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?

flag

5 Answers

vote up 4 vote down check

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|flag
+ 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 at 3:02
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 at 9:06
vote up -1 vote down

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|flag
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 at 9:45
vote up 2 vote down

A robust way to do this is to use git name-rev:

$ git name-rev --name-only HEAD
master

This is generally considered more reliable because it is a "plumbing" command and is designed to be parsed by a program (in fact, the only output is exactly what you want). The output of git branch is more variable and could change in the future.

A good way to describe a release is to use the git describe command. This refers the current commit to the nearest tag, providing a stable indicator of which branch was built. If you label your build as coming from the "integ_2" branch, you still won't know what was actually included in the build.

link|flag
1  
+1 I originally posted just to share my own code snippet, but yours is superior. I can't edit answers. Would you mind adding that you can also run git name-rev --name-only HEAD to get the branch name only? Thanks! – jhs Oct 20 at 8:39
Good addition, thanks for that. – Greg Hewgill Oct 20 at 8:54
1  
This can give more than one result when there is more than one branch pointing to current commit, or if current commit is tagged. Use git-symbolic-ref. – Jakub Narębski Oct 20 at 9:37
Jakub, thank you for pointing that out. However, with my related question, I do not appreciate you down-voting and commenting critically on every answer except your own. I prefer Greg's solution due to its brevity. Not every situation warrants copying source from the Git project :) – jhs Oct 20 at 10:23
Also this solution wouldn't work if we are on detached HEAD (i.e. HEAD points directly to a commit); we would get 'undefined' as a result. We are not on branch named 'undefined' but on unnamed, anonymous branch. – Jakub Narębski Oct 20 at 12:16
show 1 more comment
vote up 0 vote down

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|flag
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? – jhs Oct 20 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. – jhs Oct 20 at 8:35
This code is from GitHub : github.com/guides/… I've used only with Darwin and Ubuntu. It works well on both of them. – Damien MATHIEU Oct 20 at 8:48
git-branch is porcelain (user interface) command, and its output should not be used in scripts – Jakub Narębski Oct 20 at 9:39
vote up 0 vote down

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|flag
git-branch is porcelain (user interface) command, and its output should not be used in scripts – Jakub Narębski Oct 20 at 9:38

Your Answer

Get an OpenID
or

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