5 lines
91 B
Text
5 lines
91 B
Text
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
exec git lg $(git tag --sort=-taggerdate | head -n1)^..HEAD
|