summaryrefslogtreecommitdiff
path: root/scripts/system/git-ps1
blob: 0b860cd484ddcb2c64f97a2be82002ac8e0c4cee (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
out=$(git branch --show-current 2>/dev/null)
if [ -z "$out" ] ; then
     out=""
else
     out="($out) "
fi
echo -n "$out"