mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
5 lines
129 B
Bash
Executable File
5 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
|