mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-22 14:18:32 +03:00
4 lines
158 B
Bash
4 lines
158 B
Bash
|
#!/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 | grep -Ev 'New translations'
|