[core-workflow] Help needed: best way to convert hg repos to git?

Oleg Broytman phd at phdru.name
Fri Feb 12 12:13:01 EST 2016


On Fri, Feb 12, 2016 at 10:02:11AM -0600, Ryan Gonzalez <rymg19 at gmail.com> wrote:
> How did you manage to push the repo somewhere? hg-git successfully exported all the changesets for me, but I couldn't push to a directory, and my computer ran out of memory twice during the adding objects stage when trying to push to GitHub.

   As for Github, push in smaller batches, something like

$ git log --oneline | wc -l
92979

$ git push github master~45000:refs/heads/master

$ git push github master:master

Oleg.
-- 
     Oleg Broytman            http://phdru.name/            phd at phdru.name
           Programmers don't die, they just GOSUB without RETURN.


More information about the core-workflow mailing list