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