Hannu Koivisto writes:
> I haven't followed CEDET development for a while and I see there
> has been a switch from CVS to Bazaar. I used to use a git mirror
> of the CVS repository but the mirror doesn't talk to me anymore.
>
> Is there a git mirror of the Bazaar repository? I'd rather not
> learn Bazaar just because of CEDET.
I retired the git mirror; with the switch to bzr, I would have to script
that stuff again, and frankly I don't see a reason. For just getting the
source, just use
bzr checkout bzr://cedet.bzr.sourceforge.net/bzrroot/cedet/code/trunk cedet
and 'bzr update' to, well, update.
If you want it more git-like, do
bzr clone bzr://cedet.bzr.sourceforge.net/bzrroot/cedet/code/trunk cedet
('clone' is an alias for 'branch'), and when pulling the first time use
bzr pull --remember bzr://cedet.bzr.sourceforge.net/bzrroot/cedet/code/trunk
You can then just do 'bzr pull' in the future. If you get merge
conflicts (currently, files might get changed during the build), just
use 'pull --overwrite' or do 'bzr revert' (which is more or less 'git
reset --hard').
-David
|