mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
4 lines
156 B
Bash
Executable file
4 lines
156 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:'%Cred*%Creset %Creset %s %b %Creset' $HASH..HEAD
|