[Development] Focusing bug fixes to 5.9 branch and patch releases during H1/17

Thiago Macieira thiago.macieira at intel.com
Tue Mar 14 16:47:11 CET 2017


On terça-feira, 14 de março de 2017 07:29:00 PDT Marc Mutz wrote:
> On Monday 13 March 2017 12:33:32 Oswald Buddenhagen wrote:
> > neglecting 5.8 (for two months now)
> 
>   $ git log --ancestry-path 'gerrit/5.8@{2 month ago}..gerrit/5.8' \
>    --oneline | wc -l
>   402
>   $ git log --ancestry-path 'gerrit/5.9@{2 month ago}..gerrit/5.9' \
>    --oneline | wc -l
>   warning: Log for 'gerrit/5.9' only goes back to Mon, 13 Feb 2017 12:08:20
>   195
>   $ git log --ancestry-path \
>     'gerrit/5.8@{Mon, 13 Feb 2017 12:08:20 +0100}..gerrit/5.8' \
>     --oneline | wc -l
>   153

You're using the reflog, which implies how often you update your gerrit remote, 
not the commits in question.

For the last two months:

[qtbase]
$ git rev-list --no-merges --since=2.months.ago v5.8.0..origin/5.8 | wc -l
335
$ git rev-list --no-merges --since=2.months.ago origin/5.8..origin/5.9 | wc -l
276
$ git rev-list --no-merges --since=2.months.ago origin/5.9..origin/dev | wc -l
72

So, no, at this point qtbase has more activity in 5.8 than 5.9.

[qtdeclarative]
$ git rev-list --no-merges --since=2.months.ago v5.8.0..origin/5.8 | wc -l
60
$ git rev-list --no-merges --since=2.months.ago origin/5.8..origin/5.9 | wc -l
210
$ git rev-list --no-merges --since=2.months.ago origin/5.9..origin/dev | wc -l
63

The situation is reversed in qtdeclarative.
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center




More information about the Development mailing list