4 lines
129 B
Bash
4 lines
129 B
Bash
|
#!/usr/bin/env bash
|
||
|
previous_tag=$(git tag --sort=-creatordate | sed -n 2p)
|
||
|
git shortlog "${previous_tag}.." | sed 's/^./ &/'
|