Hey all, I'm going to be upgrading the format of our bzr branches to 1.9 soon. Why? It's faster, it's more compact, and lifeless told me to.
This means a couple of things. First and foremost, you need to be on a recent bzr - at least version 1.9. (I recommend 1.12... but whatever floats your boat.) If you run Ubuntu, make sure you have the ~bzr PPA from launchpad in your /etc/apt/sources.list ... you can get the appropriate lines from http://launchpad.net/bzr/+archive. The rest of you, http://bazaar-vcs.org/Download. Secondly, and you can do this before I actually do the server-side upgrade, you want to upgrade your local branches and your local shared-repo (you are all, of course, using local shared repo) Assuming the following layout: Repo: ~/src/drizzle Branches ~/src/drizzle/drizzle ~/src/drizzle/mordred ~/src/drizzle/foo I would do this: bzr upgrade --1.9 ~/src/drizzle bzr upgrade --1.9 ~/src/drizzle/drizzle bzr upgrade --1.9 ~/src/drizzle/mordred bzr upgrade --1.9 ~/src/drizzle/foo Of course, you're welcome to be fancy and do: find ~/src/drizzle -type d -maxdepth 1 | xargs -n1 bzr upgrade --1.9 _______________________________________________ Mailing list: https://launchpad.net/~drizzle-discuss Post to : [email protected] Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https://help.launchpad.net/ListHelp

