8 lines
288 B
Bash
8 lines
288 B
Bash
|
# Gets git data.
|
||
|
# Should be sourced where neccessary.
|
||
|
|
||
|
export BRANCHNAME=${BRANCHNAME:=$(git branch --no-color --show-current)}
|
||
|
export BUILDID=${BUILDID:=$(git rev-list HEAD --count)}
|
||
|
export COMMITHASH=${COMMITHASH:=$(git rev-parse --verify HEAD)}
|
||
|
export VERSION=${VERSION:="0.1.0-dev"}
|