Hi, The new development repository is https://secure.ucc.asn.au/hg/dropbear
That has all the old monotone history imported, with branch names changed. I'm not quite sure the best way for you to switch to that server. I only noticed your github conversion after getting the Mercurial repository going (with a fair bit of hassle) - when I tried using monotone's git export a while ago it didn't seem to export proper branch history. It all looks fine in Github there though. (Or perhaps it was that git->mercurial conversion didn't preserve branch history, I forget). Cheers, Matt On Fri, Nov 18, 2011 at 07:37:36PM -0600, Spenser Gilliland wrote: > Hi, > > I have a script (below) which updates my github clone of the monotone > repo weekly. Is the monotone repo still the best place to get the > head of development? I read about a mercurial server being set up in > a previous email. > > Thanks, > Spenser > > #!/bin/bash > > # This Script copies the montone repo for dropbear to github. > cd /tmp > mtn -d dropbear.db db init > mtn -d dropbear.db pull monotone.ucc.asn.au "au.asn.ucc.matt.dropbear*" > > # Get rid of the following tags as they cannot propogate to git. > mtn -d dropbear.db -b au.asn.ucc.matt.dropbear co dropbear > cd dropbear > mtn db kill_tag_locally t:ltc-0.95-db-merge1 > mtn db kill_tag_locally t:ltc-0.95-orig > mkdir ../dropbear.git > cd ../dropbear.git > git init > mtn --db ../dropbear.db git_export | git fast-import > git branch -M au.asn.ucc.matt.dropbear master > git remote add origin [email protected]:Spenser309/dropbear > git push --mirror > rm -rf /tmp/dropbear* > > -- > Spenser Gilliland > Computer Engineer > Illinois Institute of Technology
