Track pushes and train riding with Mercurial
July 25, 2013 at 01:10 PM | categories: Mercurial, MozillaMy Mercurial extension for Firefox development now has an initial implementation of pushlog aggregation and searching.
You first start by synchronizing the pushlog data on Mozilla's servers with the local client:
hg pushlogsync
This takes a while the first time you run it because it has to download all the data. On subsequent runs, it only downloads new data, so it should be much faster.
Then, you can search for the push history of a changeset:
$ hg changesetpushes -a b968708558b9 133967:b968708558b9 Bug 839809: Make counter-increments and list counting that would go past our internal (int32_t) limit keep the counter at its current value rather than wrapping. r=dholbert Per CSS WG resolution regarding counter-styles-3, afternoon of 2013-02-05: http://krijnhoetmer.nl/irc-logs/css/20130205#l-1590 http://lists.w3.org/Archives/Public/www-style/2013Feb/0392.html Note that this patch depends on signed integer overflow behavior in C++, which I believe is portable despite being unspecified. Tree Date Username Build Info inbound 2013-02-21T18:12:57 dbaron@mozilla.com https://tbpl.mozilla.org/?tree=Mozilla-Inbound&rev=85b91048c1cd central 2013-02-22T09:43:12 ryanvm@gmail.com https://tbpl.mozilla.org/?tree=Mozilla-Central&rev=3a7d4085787e build 2013-02-22T14:31:42 gszorc@mozilla.com https://tbpl.mozilla.org/?tree=Build-System&rev=3a7d4085787e fx-team 2013-02-25T01:04:44 ttaubert@mozilla.com https://tbpl.mozilla.org/?tree=Fx-Team&rev=31466fd86eb7 graphics 2013-02-25T20:02:57 mwoodrow@mozilla.com https://tbpl.mozilla.org/?tree=Graphics&rev=dcf53b7140cd ash 2013-02-26T13:50:41 armenzg@mozilla.com https://tbpl.mozilla.org/?tree=Ash&rev=201b64ad48d8 services 2013-02-28T09:42:45 Ms2ger@gmail.com https://tbpl.mozilla.org/?tree=Services-Central&rev=31466fd86eb7 aurora 2013-04-01T13:50:56 bbajaj@mozilla.com https://tbpl.mozilla.org/?tree=Mozilla-Aurora&rev=60a3f369ccf0 beta 2013-05-13T09:59:38 lsblakk@mozilla.com https://tbpl.mozilla.org/?tree=Mozilla-Beta&rev=60a3f369ccf0 release 2013-06-17T15:53:19 akeybl@mozilla.com https://tbpl.mozilla.org/?tree=Mozilla-Release&rev=c54e3363712e
(The -a argument prints all trees instead of just the release trees).
I'd like to integrate bug tracking into the mix to facilitate answering questions like when did bug 123456 ride the trains.
I'd also like to integrate release versions and build IDs into the mix. For example, when I look up a changeset, I want to know the first build on the Nightly, Aurora, Beta, and Release channels that change was included in.