Added git-cliff configuration and script

This commit is contained in:
Erik C. Thauvin 2024-10-18 16:23:04 -07:00
parent 742c221a20
commit c69d7b7076
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 90 additions and 0 deletions

10
cliff.fish Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env fish
set scriptname (basename (status -f))
if test (count $argv) -eq 1
git cliff --unreleased --tag "$argv"
else
echo "Usage: $scriptname <tag>"
exit 2
end