mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
287 B
15 lines
287 B
4 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
git_root() {
|
||
|
git rev-parse --show-toplevel 2> /dev/null
|
||
|
}
|
||
|
|
||
|
git_head_version() {
|
||
|
local recent_tag
|
||
|
if recent_tag="$(git describe --exact-match HEAD 2> /dev/null)"; then
|
||
|
echo "${recent_tag#v}"
|
||
|
else
|
||
|
git rev-parse --short=12 HEAD
|
||
|
fi
|
||
|
}
|