mirror of
https://github.com/ImageMagick/ImageMagick.git
synced 2026-06-12 15:37:14 +02:00
9 lines
221 B
Bash
Executable File
9 lines
221 B
Bash
Executable File
git_rev ()
|
|
{
|
|
d=`date +%Y%m%d`
|
|
c=`git rev-list --full-history --all --abbrev-commit | wc -l | sed -e 's/^ *//'`
|
|
h=`git rev-list --full-history --all --abbrev-commit | head -1`
|
|
echo ${c}:${h}:${d}
|
|
}
|
|
git_rev
|