7 lines
151 B
Bash
Executable file
7 lines
151 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo -n "$(git rev-parse --short HEAD)"
|
|
if [ -n "$(git status --porcelain --untracked-files=no)" ] ; then
|
|
echo -n "-dirty"
|
|
fi
|
|
echo ""
|