yea i have it installed already. Im thinking maybe at this point it might be easier to just use hg. But there is an app out there that will take a mercurial repos and convert everything into a git repo including commits and the full history. I tried it at home and it works great. cant think of the name. ill have to get back to you on the name. but it worked well.
On Jul 21, 11:25 am, pbreit <pbreitenb...@gmail.com> wrote: > A lot of code is stored in mercurial so it might be worthwhile to learn it. > It's quite easy. > > If you don't have mercurial installed, install in your preferred way > (apt-get, easy_install, pip). > > Then you only need a couple commands: > > To grab Web2py: > $ hg clonehttps://code.google.com/p/web2py/web2py > > To pull all new changes (but not update your working directory): > $ hg pull > > To update your working directory to the latest: > $ hg update > > To update your working directory to a specific changeset: > $ hg update [changeset id] > > You can use git for your applications, no problem. > > This will be *much* easier than trying to sync in git. > > Good tutorials:http://hginit.comhttp://mercurial.selenic.com