On 8 May 2016 at 08:08, Senthil Kumaran <sent...@uthcode.com> wrote: > Brett and I discussed that we might need a way to verify if two repos, hg > and git repos are same (that's have the same graph) as we undertake this > process. I don't know any offhand comparison commands, but I assume it > should be possible. I plan to add that to that tool.
One starting point that comes to mind is to compare the number of revisions (including all merges and merged revisions) for each branch, tag, etc. With Git you can do it like: $ git rev-list --count master 489 I don’t know what the equivalent command in Mercurial is. Perhaps you could clone the relevant branch to a fresh repository and check the numerical revision number. _______________________________________________ core-workflow mailing list core-workflow@python.org https://mail.python.org/mailman/listinfo/core-workflow This list is governed by the PSF Code of Conduct: https://www.python.org/psf/codeofconduct