Paste #406483

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
$ bzr branch lp:cloud-init
$ cd cloud-init/
$ bzr fast-export --plain . | git fast-import 

## delete a bunch of useless tags that now exist in git

$ rm -rf .bzr/ 

$ git clone git@github.com:stackforge/cloud-init.git cloud-init-new
$ cd cloud-init-new/
$ git checkout origin/0.7.x
$ git checkout 0.7.x
$ git remote add upstream /home/harlowja/cloud-init
$ git fetch upstream
$ git rebase upstream/master

## push that updated 'cloud-init-new' to my github...