[PATCH] next-status: Include a list of trees with duplicate commits
Mark Brown <[email protected]>
| Newsgroups | org.kernel.vger.linux-next |
|---|---|
| Message-ID | <[email protected]> |
It's possibly interesting to report trees that are duplicating commits, this tends to be a combination of trees that routinely cherry pick fixes instead of merging them up and transient issues with trees that upstream as patches rather than pull requests. Signed-off-by: Mark Brown <[email protected]> --- next-status | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next-status b/next-status index c8aa0eb..7403faf 100755 --- a/next-status +++ b/next-status @@ -87,7 +87,12 @@ count_tree_commits() echo Top trees adding commits to -next: >> ${MSG} echo >> ${MSG} -count_tree_commits ${REPORT_SHA1s} 5 +count_tree_commits ${REPORT_SHA1s} 10 + +echo >> ${MSG} +echo Trees adding duplicate commits to -next: >> ${MSG} +(cd ../duplicates/next ; wc -l --total=never * + cd ../linus ; wc -l --total=never * ) | sort -nr >> ${MSG} if [ "${BASELINE}" != "" ]; then echo >> ${MSG} -- 2.47.3