mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-21 14:34:55 +01:00
4 lines
129 B
Bash
Executable file
4 lines
129 B
Bash
Executable file
#!/usr/bin/env bash
|
|
TAG=`git tag | sort | tail -n 1`
|
|
HASH=`git show-ref -s $TAG`
|
|
git log --pretty=format:'* %s %b' $HASH..HEAD
|