blob: f54dac88cfd1d86b2cbcf7e35e8b3880f9fcfce0 [file] [log] [blame]
Rene Scharfe117a93d2006-01-04 20:42:03 +01001#!/bin/sh
2# Print additional version information for non-release trees.
Ryan Andersonaaebf432005-07-31 04:57:49 -04003
Rene Scharfe117a93d2006-01-04 20:42:03 +01004usage() {
5 echo "Usage: $0 [srctree]" >&2
6 exit 1
Ryan Andersonaaebf432005-07-31 04:57:49 -04007}
8
Rene Scharfe117a93d2006-01-04 20:42:03 +01009cd "${1:-.}" || usage
Ryan Andersonaaebf432005-07-31 04:57:49 -040010
Rene Scharfe117a93d2006-01-04 20:42:03 +010011# Check for git and a git repo.
12if head=`git rev-parse --verify HEAD 2>/dev/null`; then
13 # Do we have an untagged version?
14 if [ "`git name-rev --tags HEAD`" = "HEAD undefined" ]; then
15 printf '%s%s' -g `echo "$head" | cut -c1-8`
16 fi
Ryan Andersonaaebf432005-07-31 04:57:49 -040017
Rene Scharfe117a93d2006-01-04 20:42:03 +010018 # Are there uncommitted changes?
19 if git diff-files | read dummy; then
20 printf '%s' -git_dirty
21 fi
22fi