mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-29 16:14:43 +00:00
7 lines
182 B
Bash
Executable File
7 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
hash=`git log -n 1 | sed -r 's/^commit (.{7}).*$/\1/g; 1!d'`
|
|
branch=`git status | sed -r 's/^On branch (.+)/\1/g; 1!d'`
|
|
echo '#define GITHASH " (git:'$branch'-'$hash')"'
|
|
|