I’ve been looking at switching to Git for a while now, mainly because GitHub is just so cool!
It took much Googling, but eventually I found a way to convert an existing Bazaar repository to Git, with the following:
bzr fast-export --plain . | git fast-import
This command assumes you’re already in the repository directory.