mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
5 lines
111 B
Bash
5 lines
111 B
Bash
|
#!/usr/bin/env bash
|
||
|
TAG=`git tag | sort | tail -n 1`
|
||
|
HASH=`git show-ref -s $TAG`
|
||
|
git log --oneline $HASH..HEAD
|