23 Sep
2014
23 Sep
'14
4:25 p.m.
BTW: It would be nice, if I could just 'git clone' dovecot.
Hi, Thomas,
I happily use Felipe Contreras' excellent git-hg bridge, as I am far happier in a GIT environment than an Hg one:
https://github.com/felipec/git/wiki/git-remote-hg
The workflow couldn't be much easier, in particular if you set up a few aliases for the common sequences of tasks.
$ hg clone http://hg.dovecot.org/dovecot-2.2 $ git clone "hg::/home/phil/dovecot-2.2" dovecot-2.2-git $ cd dovecot-2.2-git $ git checkout -b hacking $ # work... $ cd ../dovecot-2.2 $ hg pull -u $ cd ../dovecot-2.2-git $ git checkout master $ git rebase master hacking $ # more work...
(OK, my workflow includes pushing too ;-) )
Hope that helps. Cheers, Phil