devtools: list stable commits without fixline
Some commits for stable releases (with Cc stable tag) may not have the fixline. Thus, this patch makes git-log-fixes.sh script also list those stable commits do not have fixline. Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
This commit is contained in:
parent
eba33e87ad
commit
f051679dc5
@ -116,7 +116,8 @@ stable_tag () # <hash>
|
|||||||
git log --oneline --reverse $range |
|
git log --oneline --reverse $range |
|
||||||
while read id headline ; do
|
while read id headline ; do
|
||||||
origins=$(origin_filter $id)
|
origins=$(origin_filter $id)
|
||||||
[ -n "$origins" ] || echo "$headline" | grep -q fix || continue
|
stable=$(stable_tag $id)
|
||||||
|
[ "$stable" = "S" ] || [ -n "$origins" ] || echo "$headline" | grep -q fix || continue
|
||||||
version=$(commit_version $id)
|
version=$(commit_version $id)
|
||||||
if [ -n "$origins" ] ; then
|
if [ -n "$origins" ] ; then
|
||||||
origver="$(origin_version $origins)"
|
origver="$(origin_version $origins)"
|
||||||
@ -126,6 +127,5 @@ while read id headline ; do
|
|||||||
else
|
else
|
||||||
origver='N/A'
|
origver='N/A'
|
||||||
fi
|
fi
|
||||||
stable=$(stable_tag $id)
|
|
||||||
printf '%s %7s %s %s (%s)\n' $version $id $stable "$headline" "$origver"
|
printf '%s %7s %s %s (%s)\n' $version $id $stable "$headline" "$origver"
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user