aboutsummaryrefslogtreecommitdiff
path: root/bin/isgr
blob: 9cb37c1a602e4f9e3c2350b80b5c4695ff0b085a (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
# Return an exit status for whether the current directory appears to be in a
# Git working copy
exec >/dev/null 2>&1
cd -- "${1:-.}" || exit
git symbolic-ref --quiet HEAD ||
git rev-parse --short HEAD ||
exit 1