mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-03 02:00:05 +00:00
16 lines
214 B
Bash
Executable File
16 lines
214 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "Syntax: $0 <commit range, start..end>"
|
|
exit 1
|
|
fi
|
|
|
|
IFS="
|
|
"
|
|
|
|
printf "## Commits\n"
|
|
for i in $(git log --oneline --reverse "$1"); do
|
|
printf -- "- %s\n" "$i"
|
|
done
|
|
|