https://bugs.kde.org/show_bug.cgi?id=381786
Ralf Habacker <ralf.habac...@freenet.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |ASSIGNED --- Comment #1 from Ralf Habacker <ralf.habac...@freenet.de> --- I used for i in $(git log | grep "cherry picked" | sed 's,^.*commit ,,g;s,),,g'); do git log -n 1 $i; done > out.log and cat out.log | gawk '$1 == "commit" { c=$2 } $1 ~ /BUG:[^$]/ { gsub(/BUG:/,"",$1); b=$1; } $1 == "BUG:" { b=$2; } $1 == "FIXED-IN:5.0" { f="5.0" ; print c " " b " " f } $1 == "FIXED-IN:" { f=$2 ; print c " " b " " f }' and got 398304bcf331a322a0fe7e475775aea887c4b565 249844 5.0 30564ba57d2614f1410b87e1d4edd81e8fc35fc3 378379 5.0 64d8749496a04c3be88300f040ae1c1e14af8103 372435 5.0 Checking the bug tracker shows that the first both tickets have a "version fixed in" to 4.8.1. The third commit uses a wrong bug id. -- You are receiving this mail because: You are watching all bug changes.