You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
24 lines
487 B
#!/bin/sh |
|
|
|
GLO="git log --format=-%x20%s" |
|
|
|
VT=`git tag --sort=-version:refname -l` |
|
VH="" |
|
if [ "$1" != "" ]; then VH="HEAD"; fi |
|
V2="" |
|
for V1 in $1 $VT |
|
do |
|
if [ "$V2" != "" ]; then |
|
if [ "$VH" = "HEAD" ]; then |
|
VD="$VH" |
|
else |
|
VD="$V2" |
|
VH="$V2" |
|
fi |
|
D=$(git show -s --format=%cs $VD^{commit}) |
|
printf "\ne16 %s - %s\n------------------------\n" "$V2" "$D" |
|
$GLO $V1..$VH |
|
VH="" |
|
fi |
|
V2="$V1" |
|
done
|
|
|