mirror of
https://github.com/nais/wonderwall.git
synced 2026-02-14 17:49:54 +00:00
8 lines
185 B
Bash
Executable File
8 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
dirty=""
|
|
test -z "$(git ls-files --exclude-standard --others)"
|
|
if [ $? -ne 0 ]; then
|
|
dirty="-dirty"
|
|
fi
|
|
echo $(date "+%Y-%m-%d")-$(git --no-pager log -1 --pretty=%h)${dirty}
|