[15:17] hi, how can I download only missing part of the branch with bzr? [15:17] to be more specific e.g. I've already done "bzr branch lp:kicad" [15:18] Now I want to checkout (in git terminology) the lp:kicad/stable branch. [15:20] And I can't find the way to get it without downloading all the stuff that I already have... [15:21] so... is it possible at all? or I'm just mistaking some bzr basic concepts? [15:26] Branches are independent [15:26] Whereas in git, all the possible branches are stored in the same place [15:28] oh that's sad... ;( [15:28] LeoNerd: thanks [15:31] use a shared repository? [15:38] Peng, what's that? [15:43] Fat-Zer: bzr help init-repo. [15:44] Fat-Zer: It creates a repository in a directory which all branches underneath that directory will use to store their data in. [16:03] Peng: and hoq to add branch to it after the init? [16:03] *how [16:03] bzr help reconfigure [16:03] New branches created in child directories will automatically use it. [16:03] reconfigure can be used to convert existing branches [16:14] Peng: thanks but I haven't found how to use reconfigure so I done it like this: [16:14] bzr init-repo kicad-repo [16:14] cd kicad-repo/ [16:14] bzr branch ../kicad-branch/ kicad [16:14] rm -r kicad/ [16:14] bzr branch lp:kicad [16:14] bzr branch lp:kicad/stable [16:15] a bit hacky... that that worked... [16:18] *but that