Bug 1748581 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

This ticket tracks addressing https://bugzilla.mozilla.org/show_bug.cgi?id=1556162#c4.  I propose that we checkout the tipmost l10n changeset chronologically before the current HG source changeset.

We can determine the timestamp from the epoch (UTC) via the "internal HG time representation" of the current HG source changeset using:
```
$ hg export -r . --template '{word(0, date|hgdate)}'
1639523310
```
We can checkout the appropriate changeset with:
```
$ hg update --date '<1639523310 0'
...
```
This ticket tracks addressing https://bugzilla.mozilla.org/show_bug.cgi?id=1556162#c4.  In cases where we currently checkout `tip` (basically, only Nightly), I propose that we checkout the tipmost l10n changeset chronologically before the current HG source changeset.

We can determine the timestamp from the epoch (UTC) via the "internal HG time representation" of the current HG source changeset using:
```
$ hg export -r . --template '{word(0, date|hgdate)}'
1639523310
```
We can checkout the appropriate changeset with:
```
$ hg update --date '<1639523310 0'
...
```

Back to Bug 1748581 Comment 0