#!/bin/bash

# DESCRIPTION:
#
# Get the latest revision for the given branch.
#
# env: GIT_ROOT, GIT_BRANCH

cd "$GIT_ROOT"

/usr/bin/git rev-parse --revs-only "$GIT_BRANCH"
