[00:57] Hi. Is there a function in bzr to find in what revisions a specific line of code was last modified? [00:58] matthewg42: bzr annotate [00:59] ajmitch: thank you! [01:00] ajmitch: perfect [01:15] hi ajmitch [01:39] poolie: hello [04:58] Any bzr command I run (including "bzr --version") prints "cannot import name info" before anything else. Here is my ~/.bzr.log: http://paste.ubuntu.com/849552/ [05:02] I'm using Ubuntu Precise and the actual output of "bzr --version" is here: http://paste.ubuntu.com/849555/ [05:04] Does "bzr --no-plugins --version" work? [05:04] Perhaps your version of bzr-bisect needs updating. [05:07] spiv: No error message with "bzr --no-plugins --version". [05:09] Ok, so a problem with the bzr-bisect plugin then. [05:11] How should I solve it? Since I'm using bzr from the default repositories should I report this as a bug so that it can be fixed before Ubuntu 12.04 is released? [05:13] Yes, please do file a bug on the bzr-bisect package. [05:17] Jordan_U, please paste the bug here too [05:19] Jordan_U how about if you do 'bzr pull -d ~/.bazaar/plugins/bisect' [05:19] Jordan_U, spiv, actually i think that's all you need, it's ok in tip of bzr-bisect [05:19] no need to file a bug [05:20] Well, it'd just be a bug asking for the package to be updated then :) [05:25] poolie: When I try that command I get http://paste.ubuntu.com/849565/ [05:32] spiv, but he's running from ~/.bazaar... [05:33] jordan_u, unless you really want to be running from source or you have local tweaks to bzr-bisect [05:33] jordan_u, are you on ubuntu or debian? [05:33] if so, try just `rm -rf ~/.bazaar/plugins/bisect` and then `sudo apt-get install bzr-bisect` [05:34] oh you said Precise [05:34] poolie: Ubuntu. [05:34] so, yeah, try the package [05:35] E: Unable to locate package bzr-bisect [05:37] hm [05:37] if you deleted it then try 'bzr branch lp:bzr-bisect ~/.bazaar/plugins/bisect' [05:37] Though after "rm -rf ~/.bazaar/plugins/bisect/" I no longer see the error message. Maybe I already had a local version of bzr-bisect for some reason and it was out of date? [05:47] poolie: oh, I see [05:47] poolie: my bad! [06:09] jordan_u, yes, you had a local old version [06:09] if you're not using it you can just leave it deleted i guess [07:00] hi vila [07:08] hi all [07:15] hi there [07:32] vila do you know of a problem where a plain bzr init (rather than push) on lp doesn't configure stacking? [07:33] meh, never heard of [07:33] happened recently ? [07:33] specifically: with a 2.6 bzr ? [07:34] with 2.5bsomething [07:35] rings no bell, but diagnosing it should be doable with -Dhpss and/or -Dhpssvfs (sp?) [07:36] first cause coming to mind is that we fail to consult control.conf but I'm pretty sure we didn't break that as we have test coverage for it [07:36] but imbw [07:36] https://bugs.launchpad.net/bzr/+bug/936772 [07:36] Ubuntu bug 936772 in Bazaar "bzr init doesn't set stacking branch from default" [Medium,Confirmed] [07:42] bzr config -d lp:~mbp/launchpad/remove-bsondump2 [07:42] reports a stacked_on_location [07:44] i just set it from python [07:44] it wasn't ? [07:45] it wasn't previously [07:45] well, I'm not sure init set it nor if it's required for push to find one... [07:47] poolie: you're running bzr from source right ? [07:47] from the daily ppa [07:47] so 2.6dev [07:51] on precise that would be revno 6460 ? [07:53] poolie: that would rule out revno 6468 which otherwise may be a good suspect [07:58] Version: 2.5.0~bzr6460.6162~ppa4023~precise1 [07:58] what a version :) [08:03] right, so that's indeed 6460 so I won't suspect the config changes to start with (at least not the ones in 6468) [08:03] poolie: did the push works better with stacked_on_location set (and how did you set it manually by the way ?) [08:04] by copying the /+branch-id/nnnn from a know working branch ? [08:13] b.set_stacked_on_location(url) [08:13] yes, using the relative url printed by the command [08:13] it's odd it prints but doesn't set it [08:17] ECANTPARSE [08:17] what prints ? [08:17] oh, bzr init ? [08:18] yes [08:19] poolie: I wouldn't be surprised it init prints the default_stack_on without setting stacked_on_location [08:19] or only midly surprised [08:23] poolie: I never do 'bzr init lp:...' before pushing, I always do 'bzr push', can it be that you've found a very old bug ? [08:24] poolie: I can reproduce if I try to do 'bzr init' first, but a bare push works as expected [08:25] it's sad when it's 7:25pm and you still haven't reached the base of the mountain you actually want to climb [08:26] vila, it may be very old [08:26] i too would normally just push but here i need to work around a development-colo thing [08:26] poolie: well, the question is: did you walk on the path and are you closer to your goal ;) [08:27] poolie: bah, easy to test with older bzr, I'll delete the branches later [08:30] poolie: confirmed for 2.0 [08:32] poolie: hehe, I almost forgot the old progress bar look ;) [08:32] yeah, a bit [09:01] morning all! [09:02] mgzorning ! [09:09] hi mgz [09:09] i might call that a night [09:14] poolie: enjoy your night ;) [09:15] :/ [09:15] thanks though [09:25] is there a way to split off the history from a subdirectory of a branch and merge it into a branch of another project? Case in point, I'd like to move a library into a different project without losing history. [09:25] I've tried bzr split, but that takes the whole repository history along with it. I've also tried fast-import-filter, but that blows away the whole existing target repository. [09:37] ev: you can use the filter to create a new branch just of that sub dir, then splice it on to the other existing tree [09:43] ev: so, basically instructions at first link followed by instructions at seconds link: [09:43] http://stackoverflow.com/questions/67021/how-do-i-export-the-bazaar-history-of-a-subfolder/596656#596656 [09:43] http://nicholasworkshop.wordpress.com/2011/11/07/merge-2-unrelated-branches-in-bazaar/ [09:44] mgz: cheers! Just trying to figure out how to merge into a subdir. the merge-into plugin seems to be broken. [09:53] ev: you could just mv inside the exported branch and commit before merging [09:54] mgz: and that's exactly what I did :) [09:54] mgz: thanks for all your help! [09:54] worked perfectly [11:47] vila: hi :) [11:47] jelmer: hello :) [11:47] vila: would you perhaps have a chance to review https://code.launchpad.net/~jelmer/bzr/less-inventory-access/+merge/93612 ? [11:49] grr, I have the opposite of Alzheimer: I remember reviewing stuff but I'm the only one remembering it :-( [11:51] on the other hand it may just be because unity hated me last week and lost them... [11:55] Well, as long as you're remembering things, you remember that $50k I asked you to hold for me? I can take it back now... 8-} [11:56] hehe [11:56] :) [12:01] 😍 [12:02] thanks vila! === yofel_ is now known as yofel [15:00] afternoon all :) [15:01] hi farblue [15:01] I've been playing with bzr-svn and working through bzr to an svn repo [15:01] At the moment I have a bzr 'checkout' from my svn repo but have a couple of questions [15:02] firstly how do I show the 'branches' in the svn repo so I can switch to one [15:02] I've setup what I think is the correct values in the subversion.conf file but don't know what to do next [15:04] possibly related, I also don't understand the svn-import operation and when I'd want to use it. I currently wish to continue with the svn repo being the 'truth' and don't want to migrate entirely to bzr yet (workplace politics etc.) [15:06] farblue: branches are basically whatever you want them to be - as is the case in svn [15:08] farblue: "bzr svn-import" will import all branches in a repository [15:08] so with svn-import if I then work on the resulting repository how do I get the changes back into svn? Or am I correct in thinking svn-import is a one-way migration facility? [15:10] farblue: you can use "bzr push" in individual branches to push changes back into svn [15:11] ok, that makes sense :) [15:13] regarding branches, svn basically doesn't have a concept of branches, just different points in the tree. I've tried to tell svn-layout etc. about the structure of my repo but when I then do 'bzr branches ' it eats lots of memory and takes forever and doesn't seem to do much else [15:14] farblue: in svn, every directory can be used as a branch point [15:14] farblue: what did you set the layout to? [15:14] yeah, i know [15:14] [ca5c6774-48ba-4b05-a2e9-b76598164b70] [15:14] locations = http://bacon.server.dev/svn/website [15:14] branches = /trunk;/releases/*;/branches/feature/*;/branches/rgoldsmith/* [15:14] tags = /tags [15:15] farblue: You probably want 'tags = /tags/*' I think [15:15] ok [15:15] other than that it seems reasonable [15:15] what version of bzr are you using? [15:15] 'bzr branches' is significantly faster in bzr 2.5 [15:16] I'm on 2.4.2 [15:16] the current release bundle for OSX [15:16] farblue: that would explain the memory usage [15:16] farblue: I would recommend just running "bzr branch " for the the branch you're interested in [15:17] how will that help? [15:17] farblue: that will pull down the branch you need [15:17] farblue: or is there a particular reason you want to see the list of branches? [15:18] my problem isn't pulling down the branch, it's seeing what branches can be pulled [15:18] farblue: anything that exists in the svn repository can be pulled down as a branch [15:18] ok, then what command can I use to list the content of a specific folder in the svn repo? [15:19] i.e. a bzr equiv of svn list ^/releases [15:19] farblue: I would recommend just using 'svn ls' [15:19] farblue: or 'bzr branches' if you're running bzr 2.5 [15:19] but 'bzr branches' will only list paths that are considered to be branches by the currently set svn layout for bzr-svn, not all paths [15:20] that's ok because we have a strict structure to the repo [15:20] I can't possibly imagine the mess people would get into with svn if we didn't! [15:22] bzr branches (using the svn-layout I showed above but with the tags edit you suggested) is running at ~ 280KB/s and is showing a value of '62980KB' and going up rapidly - is this expected behaviour? [15:22] farblue: in bzr 2.4, yes [15:22] fun [15:23] so any thoughts on when bzr 2.5 will be stable? [15:23] farblue: it should be out in a couple of weeks [15:23] win :) [15:23] so, basically, I'm doing things correctly but 2.5 will significantly improve matters [15:27] I'm also trying to work out how to best fit bzr repo and working tree setups into my workflow. I currently have a folder structure (for web projects) on 2 levels - dev/staging/release as a first level set of folders within which is a collection of projects (release versions inside release, dev versions inside dev etc.). [15:27] Am I correct in thinking if I do an init-repo at the base of all this, in the same folder as the dev/release/staging folders then all my repos will basically sit within this shared space? [15:28] rather than having a repo per project [15:33] farblue: I think you mean "then all my branches" [15:33] farblue: but, yes [15:33] farblue: it doesn't have any functionality impact, but it will save disk space [15:39] yeah, matching up the terminology across multiple version control systems is rather confusing [15:39] anyhow, will it be a problem that I'd be 'sharing' the shared space across the results of multiple 'svn-import' operations? I assume now [15:39] not* [15:40] I think of a branch as being related to a repo you see :) You know, shared history, branches coming from an initial 'trunk' etc. while my references to 'repo' are concerning different projects which don't share history or code. [15:43] farblue: both applies to bzr repos ;) But the definition of a repo in bzr is: a container for revisions, whatever branches they come from [15:43] http://wiki.bazaar.canonical.com/MatthewFuller/SpotDocs/PiecesInBrief [15:43] hmm, yeah, still getting the hang of that [15:44] farblue: you seem to be doing well ! [15:44] my question, if I can phrase it correctly, is whether things will get messy if I use a shared repository to contain revisions for multiple branches of different projects :) [15:44] farblue: no, that should be fine [15:44] no [15:45] so if I init-repo at the top level of my 'development' folder in my home folder then I can effectively share the storage space across all my projects and all their branches [15:45] Well, it won't save much/any with unrelated branches. [15:46] yeah, I understand that but my working practice and current folder layout in my home folder means I have 'branches' (working copies in svn speak) all over the place [15:46] And you'll slow some things down (most obviously, anything that touches bit swathes of the repo indiscriminately, like repacks and 'check') [15:46] hmm [15:46] so something like 'bzr branches' won't get in a muddle and try to show me all branches on all projects? [15:47] Repos won't have any effect on 'branches'. [15:47] farblue: no, 'bzr branches' only searches under the path you give it [15:47] still grappling with that idea [15:48] 'branches' is roughly "for i in `find . -type d`; echo $i if is_a_branch $i; done" [15:49] fullermd: it's something different for svn branches [15:50] so if I have working trees spattered all over my filesystem I suppose the best option might be to have a folder per project in which I keep a set of branches (keeping things tidy) then 'checkout' these branches to (bound branches with) working trees where they actually need to be [15:50] Well, yes, that's a whole different story. But a bzr shared-repo would have even less effect then ;p [15:50] oh dear, I feel I'm getting in a twist [15:51] maybe the best thing would be to tell you all what I need and let you suggest solutions :D [15:51] (that was to jelmer, not farblue) [15:51] ah, ok, so my idea is valid? [15:51] farblue: I basically just have one directory with a shared repository per project [15:51] farblue: and then branches (as directories) inside of that [15:51] If you're talking on the local FS, you probably want light checkouts, not heavy. [15:53] well, currently we use svn. We have a central repo for each project and each project has a trunk, release branches, a trunk (we operate a 'clean trunk' policy), feature branches (which we also treat in the same way as clean trunk) and per-developer dev branches. [15:53] when I want to do some work I'd branch trunk or the feature branch into a folder inside my dev space within the repo, switch my working copy to it and do work [15:54] on my filesystem I keep checkouts (in different places) for the current release branch (so I can do fixes to current releases) and my dev working copy [15:54] the locations on the filesystem are important because Apache is setup a specific way and we develop 'web applications' [15:54] I work on ~ 11 projects [15:55] so, given all of this, can people recommend a 'pure bzr' system and a 'bzr interfacing with the central svn repo' system? [15:56] Well, I write web apps, and I just wind up with a shared repo for each ~/work/$PROJECT and branches under it (or often, the whole 2 or 3 levels deeper in the fs). [15:56] But I also flip the "stop making my life difficult, dammit" switches in Apache :p [15:57] we currently have ~/Sites/dev/project and ~/Sites/release/project for each project [15:58] we currently have vhost_alias in apache to map the url to directories but as I'm firstly looking to work within the team's standard setup and then find a good migration path I'd like to investigate how bzr will fit into our current setup as a first option [15:58] I know changing the vhost_alias setup and flipping everything to ~/Sites/project/dev and ~/Sites/project/release might work as an easier option - but hell, I learn more the hard way ;) [15:59] Well, the principle "stop screwing with my" config would be FollowSymlinks. Apache just looks under my ~/public_html/, and I make links into ~/work/ as appropriate. [16:00] we just use vhost_alias to do something similar in a structured way everyone can follow the same rather than everyone having to re-invent the wheel [16:00] switching the structure is possible but will have more resistance [16:02] so, I suppose, in the simplest case, I'd have a repo-init in a project folder, within which I'd have dev and release as branches with associated working trees [16:03] except I'd then have to have a folder for each branch even if it wasn't also a working tree [16:08] so I could have a separate location for the project and all the branches then have a 'checkout' working tree switch is where I need it and I can switch between branches [16:14] farblue: this all sounds really complex; I would just start out with something simple and then change things around as necessary later [16:15] I'm afraid we make heavy and extensive use of svn and if I wish to switch or review bzr to recommend the department switch I need to be able to use bzr in this same environment :( I've played with small testing bzr setups and believe I've grasped the basics [16:16] anyone know much about the --layout parameter to svn-import? [16:16] farblue: if you've already set up the layout in ~/.bazaar/subversion.conf you shouldn't need it [16:16] ok :) [16:17] do you know whether the branches config option in subversion.conf will understand "/branches/*/*" and any idea what it will do with that? [16:18] our branches are /branches/username/branchName (often a ticket number) [16:18] farblue: yes, it should understand branches/*/* [16:23] so I do an svn-import into a separate folder and then lightweight checkouts for the branches I wish to work on and a commit on the lightweight branches will update the original branches as they are bound and then a push or pull will shuttle revisions back and forth with the svn repo [16:24] and the normal bzr commands to create a new branch will result in a branch being created in the svn repo? [16:24] (on push) [16:24] farblue: pull and push work on branches, not on a repository [16:25] yes, I understand that :) [16:25] I could have said "a push or pull will shuttle revisions back and forth with the related branches in the svn repo" [16:25] farblue: push and pull each work on just a single branch [16:26] the branch that you're currently working in [16:26] yes, I understand that [16:26] and creating new branches in the svn repo? [16:26] farblue: they will create a new branch but you'll have to specify the URL of that branch [16:27] oh? so how does that work? may I have an example? [16:28] farblue: "bzr push svn+ssh://svn.company.com/repo/branches/somesvnbranch" [16:28] ok [16:28] that's just the first time you push after creating the new branch [16:28] yes [16:29] farblue: after that you can just run "bzr push" in that branch and it will push to ../branches/somesvnbranch [16:29] and, obviously, if you don't push a branch it will never turn up in the svn repo [16:29] farblue: right, changes that aren't pushed (or committed, if you're in a checkout of the svn repo) [16:29] It's possible you could do some locations.conf hackery to preseed push locs. How fragile that'll wind up being is another question... [16:30] hmm [16:32] if it's a svn repo, defaults can be specified in subversion.conf avoiding issues with overrides in locations.conf [16:33] vila: That doesn't help for branches, because there are multiple branches in a single svn repo [16:34] push_location = .../branches/{basename} with recent enough bzr will provide a default push_location before it's set in branch.conf [16:34] vila: also, this is something that's set on the local bzr branch [16:34] ha crap [17:22] Hi all. After a massive renaming (i moved **all** the files in my repo one level up in the directory tree), the repo doubled in size, which is not what I expected by a 'bzr mv' command (apparently it doesn't quite behave like unix 'mv'). Am I really storing twice each file now? [17:26] ggherdov: try `bzr pack` now, then compare the packs dir with the obsolete packs dir [17:26] I have vague recollection of an issue like this before that was just to do with storing things wonkily [17:28] mgz: you're saying to do a 'bzr pack' on the two revisions, and then compare some directory then? does 'bzr pack' produce a directory? [17:28] no, it rearranges the current content [17:29] look at the size of .bzr/repository/packs now, then run the command, then look again [17:29] ah ok, so 'bzr pack' should somehow remove the garbage (redundant content) . I'll try right now. [17:29] my expectation is it will go back down to the size before the move [17:31] is the plan for colo to be the default with bzr? [17:32] jml: possibly, but at least not in 2.5 [17:32] 'bzr pack'ing ... [17:36] msg: as you said. you wow-ed me. [17:36] jelmer: ok, thanks. [17:37] jml: are you using them, is it working ok? [17:37] ggherdov: good good. I can't find a bug entry for this though. [17:38] jelmer: pretty much. apart from a bug or two (filed), the mildly inconvenient syntax and occasionally not being able to guess the right way to do a thing [17:38] mgz: should I file one? [17:39] jml: IIRC Aaron was going to propose merging of a better syntax, e.g. "co:FOO" rather than "file:,branch=FOO" [17:39] ah, last think mgz: should I commit to my remote repo now? to make the change persistent. [17:39] thing* [17:41] ggherdov: a bug would be good I think, the temporary bloating is suprising. [17:42] jelmer: that could be nice [17:42] jelmer: it's a shame the prefix is needed [17:42] ggherdov: getting the revision on your remote repo and seeing what that does to the packs dir may also be interesting [17:42] mgz: ok doing it. it's my first time filing a bug report so I might need some guidance. BTW, should I commit to the remote now, to make the change persistent? [17:42] do you mean commit or push to remote? [17:42] * mgz isn't quite sure how you're working [17:43] jml: The prefix is the easiest thing to do - it'll work everywhere [17:43] propogating the change now is correct I'd think [17:43] jml: the idea is to also DWIM everywhere, but that requires changes to the individual commands [17:43] I don't think it's strictly a 'bug'. More an unpleasant consequence. [17:44] jelmer: you mean a prefix optimizes for ease of implementing over ease of use? I can see that, and that's probably a fair trade-off at this point. [17:44] jml: yes [17:45] mgz: I have a remote repo that I checkout, hack and commit. I do bzr unbind/bind to go solo if I need (i.e. no network to the remote). each time I commit, I commit both to the remote and to the local (it's automagic). [17:45] jelmer: I was thinking of hacking up something that gives a more visual picture of what projects & branches I have on my system, and in what state those branches are in [17:46] jml: that'd be nice I think [17:46] jml: I' [17:46] ggherdov: go ahead and do your cunning bondage tricks then [17:46] jml: ve done some similar things, but nothing as broad as that [17:47] jml: e.g. I have a command "bzr rm-merged" that removes all sibling branches that are merged into the current branch [17:47] mgz: a bunch of dot-directories appeared now at the toplevel of my repo, after the 'bzr pack' and 'bzr status' says they're unknown -- I have a '.foo' for each 'foo' directory actually. [17:47] jelmer: right. me too. [17:47] jelmer: I think maybe bzr should grow some built-in facilities for that once colo matures a little more [17:48] ggherdov: that's a bit odd, I can't imagine what code would be adding dot-prefixed things like that [17:48] fullermd: might that one be a bug? [17:48] :) [17:49] That would. But I'm guessing it's from something else. :p [17:49] mgz: well it must have been the 'bzr pack'. It's the only thing I did. [17:50] if you remove them and pack again do they reappear? [17:50] mgz: i'll try. [17:55] mgz: no, re-packed and they aren't back. the were an ephemeral mirage. that's voodoo. [17:57] jelmer: one thing that's kind of annoying is that the first thing I do when I branch something is "bzr switch -b trunk" [17:57] jelmer: the reason it's annoying is that I occasionally forget :) [17:58] mgz: my original point is: 'bzr pack' halved the size of my local repo, and I am very thankful for it. I'd like to propagate to the remote repo, so that I can show all my friends how cool I am. but... what to commit? 'bzr status' doesn't detect any change. (only .bzr/repository/packs/ changed is it going to be committed) [17:58] jml: can you perhaps file a bug about that? [17:58] forgot to end with a question mark [17:58] s/committed/committed?)/ [17:58] jelmer: happily. 'colo' is the tag, right? [17:59] ggherdov: packing doesn't make any new revisions, just reorganizes the storage [17:59] jml: thanks - the tag is 'colocated' [17:59] LarstiQ: I got it. so I need to pack in the remote manually. [17:59] ggherdov: yes, or wait for it to happen automatically [17:59] LarstiQ: does it? [18:00] how frequently? [18:00] ggherdov: yeah, at revisions 10, 100, 1000 etc iirc [18:00] LarstiQ: oh... logarithmic... whose the math guy at canonical? :-) [18:00] who's* [18:00] [joking] [18:04] jelmer: https://bugs.launchpad.net/bzr/+bug/937123 [18:04] Ubuntu bug 937123 in Bazaar "Have to remember to name initial branch when starting a local colocated branch " [Undecided,New] [18:07] okay, have been typing for about an hour, lets see what syntax errors I've created [18:07] noticed about five minutes ago I got the api slightly wrong so half of the complication is actually redundant for now [18:08] missing colon after method def... [18:08] missing colon after if statement... [18:09] that's it. but test failures from mixing up "flavors" and "flavours" in variable naming... [18:10] hmm. I seem to have got myself into a mess: [18:10] jml@valour:~/src/software-center-agent$ bzr st [18:10] bzr: ERROR: Not a branch: "/home/jml/src/software-center-agent/.bzr/branches/trunk/": location is a repository. [18:10] PASSED (successes=92) [18:11] jml: that's what I did the other day [18:11] this is after making a branch w/ 'switch -b deployed -r NNN', having to do 'bzr up -r NNN' because that didn't seem to get the right revno, switching back to trunk and then doing 'bzr rmbranch deployed' [18:11] mgz: oh. how did you resolve the problem? [18:11] jml: I deleted and started again :) [18:11] BUT, [18:12] try `bzr branch file:software-center-agent,branch=somethingexisting file:software-center-agent,branch=` ...actually that won't work... how do you address the default branch [18:13] *blink* [18:14] the problem is the default colo location got removed, jelmer, how do you fix that? [18:14] mgz: "bzr co file:,branch=somethingexisting ." [18:15] but I didn't remove trunk though... [18:15] huh, apparently I did [18:15] rmbranch merrily ignores the argument I gave it. [18:15] it's seems to be too easy to do by accident [18:16] jml: It doesn't - but it looks the argument you give it up as a branch [18:16] jelmer: I don't follow. I did 'bzr rmbranch deployed' while switched to the trunk branch and it removed the trunk branch. [18:24] I have a "trunk" branch, and a "feature" branch, which was taken from trunk. I perform several commits into feature, then I merge the changes back to trunk. When I commit into trunk, all the changes are applied in a single revision. Is it possible to keep the multiple commits from the feature branch, so that trunk ends up with multiple commits? [18:24] and if so... how? [18:26] jml: rmbranch doesn't have special support for colocated branches [18:26] jml: so it tries to look up "yourbranch" as a path on the filesystem [18:27] jml: "yourbranch" isn't a file that exists, so it tries "" (assuming that "" is a branch which contains the file "yourbranch") [18:27] jml: and then it ends up removing "yourbranch") [18:27] matthewg42: it is preserving the multiple commits - if you commit you can still see them with "bzr log -n0" [18:29] I think, perhaps for rmbranch we shouldn't be allowing people to specify a path inside of a branch [18:29] matthewg42: alternatively, you can look with 'bzr qlog' [18:29] jelmer: PEBKAC... I did not know about -n0. [18:30] thank you! [18:30] < still getting to grips with bzr. [18:42] jelmer: ah, I see. === Quintasan_ is now known as Quintasan [21:08] hi wgz [21:33] is it safe to ln -s /windows-bzr-profile ~/.bazaar? I can't see relevant difference between %AppData%/Bazaar/2.0 and ~/.bazaar [21:34] hi RenatoSilva [21:34] RenatoSilva: yes, that should be fine [21:49] awesome, thanks jelme [21:49] r [22:07] jml, hi? === jvargas_ is now known as jvargas [22:51] poolie: hello