10 lines
185 B
Fish
Executable file
10 lines
185 B
Fish
Executable file
#!/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
|