Skip to content

Instantly share code, notes, and snippets.

@mtrung
Created May 20, 2015 16:31
Show Gist options
  • Save mtrung/870e682df464b775f17c to your computer and use it in GitHub Desktop.
Save mtrung/870e682df464b775f17c to your computer and use it in GitHub Desktop.
getCurrGitBranch
def getCurrGitBranch = { ->
try {
def code = new ByteArrayOutputStream()
exec {
commandLine "git", "rev-parse", "--abbrev-ref", "HEAD"
standardOutput = code
}
return code.toString().trim()
}
catch (ignored) {
return "";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment