summaryrefslogtreecommitdiffstats
path: root/dgbuilder/git_scripts/gitcurbranch
blob: 5a82e483ca035b2007918a939bcb1aebc5df7acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
if [ "$#" != "1" ]
then
	echo "Usage $0 gitLocalRepositoryDir"
	exit
fi
localGitRepository=$1
cd $localGitRepository
if [ -e "$localGitRepository" ]
then
	git rev-parse --abbrev-ref HEAD
else
	echo Git Local repository not set
fi