/srv/irclogs.ubuntu.com/2012/11/09/#bzr.txt

vilamathrick: file a bug and find jelmer ;) There is probably a text file you can edit somewhere which contains the windos path.00:02
jelmermathrick: is this with the core bzr support for colocated branches, or with bzr-colo ?00:03
mathrickjelmer: I dunno, 2.5.1, created via bzr-explorer with "colocated workspace" option00:03
jelmermathrick: ah, that's the bzr-colo plugin00:04
jelmermathrick: please file a bug, but against the bzr-colo project on Launchpad00:04
mathrickis that really a bug in bzr-colo?00:05
vilajelmer: well dodged ;)00:05
vilamathrick: more or less00:05
jelmervila: :-)00:05
mathrickOK, how should I describe it? Since I have no clue how that is a problem with bzr-colo and not bzr reconfigure for instance00:06
vilamathrick: zip is not a transport supported by bzr ;) So you run into some absolute paths that may be better handled as relative (but obviously are  not (yet ?))00:06
vilamathrick: what you explained here is good enough: zipped on windos, unpacked on linux00:07
vilamathrick: it may be interesting to see if the reverse breaks in the same way (zipped on linux, unzipped on windoz)00:08
viladows00:08
viladamn tyops00:08
mathrickvila: I understand that, what I don't understand is how bzr-colo breaks things. Bzr reconfigure should be able to change that path00:09
vilamathrick: well, the point is that bzr-colo doesn't really break things, it assumes the working trees/branches/repos would stay on the same files system (roughly)00:10
jelmermathrick: bzr-colo stores an absolute path to the colocated branch, rather than a relative one; bzr reconfigure tries to open the old branch when it reconfigures I think00:11
mathrickthat is a problem with reconfigure then, no?00:11
vilamathrick: I suspect that there should be some way to bzr-colo push instead of zip/unzip that should work00:11
mathrickyes, there is00:11
mathrickI just didn't remember I made it collocated when I zipped00:12
jelmermathrick: bzr-colo should be storing a relative path00:12
vilamathrick: bzr reconfigure assumes it starts with a "correct" context, it may be worth filing a different bug for that00:12
jelmermathrick: you might be able to use --force to get reconfigure to ignore the old code00:12
mathrickah, I didn't notice --force wasa thing00:13
vilajelmer: good point (dunno if this will work but it should ;)00:13
mathricknope, --force only seems to influence potentially losing local changes00:14
vilabut in this specific case, if the branch is required, it's hard to ignore it00:14
vilamathrick: you tried or you just read the --help ?00:14
mathricktried00:15
vilathanks00:15
vilamathrick: did you try to grep for that path under .bzr ?00:15
mathrickno, but I expected to be able to change it by hand00:16
mathrickI was asking for the proper way00:16
vilamathrick: for this case, I doubt there is one (or that would be bzr-colo push)00:17
fullermdPfft, proper.  What fun is that?00:18
vilamathrick: but really, as jelmer said, bzr-colo should use a relative path (that may not be enough but should help anyway)00:18
mathrickvila: bzr-colo push is "how do I transport it properly?". But I didn't, and now my question is "how do I fix it?". Bzr reconfigure *should* be able to fix that, and I will file a bug too00:18
vilamathrick: worth a try, but if there is a single place where the branch path is defined and it's broken, bzr reconfigure can't guess the right one00:19
mathrickwhy not? bzr info tells me what the checkout thinks the source branch is. That is what bzr reconfigure is supposed to change; if it tries to open it before changing, it's kinda useless for fixing things00:20
vilamathrick: it can avoid opening it (it's broken after all) but what will it use instead of that broken path ?00:21
mathrickthe one I give it in --bind-to?00:21
vilamathrick: oh, well done !00:22
vilafor this specific case indeed, not sure if the code will make it easy to implement but file-a-bug++00:22
mathrickdone, bug #1076809 and bug #107681000:24
ubot5Launchpad bug 1076809 in bzr-colo "Copying collocated branches Windows and Linux broken by absolute paths" [Undecided,New] https://launchpad.net/bugs/107680900:24
ubot5Launchpad bug 1076810 in Bazaar "bzr reconfigure can't fix dangling paths" [Undecided,New] https://launchpad.net/bugs/107681000:24
vilamathrick: thanks00:25
mathricksure00:25
vilafullermd: linked a branch with reproducing failing tests for bug #1072513, one step closer to diagnosis ;-p00:55
ubot5Launchpad bug 1072513 in Bazaar "log can show too few revs" [High,New] https://launchpad.net/bugs/107251300:55
vilafullermd: you may want to look at the intermediate commits to see how I get there from your script (including revno 6515 where 'bzr test-script ./bzrlib/tests/blackbox/log_bug_1072513.sh  --null-output' was passing)00:57
vilafullermd: the missing feature still being to be able to keep the built env to toy around manually with the results :-/00:58
vilabut at least the syntax should be copy/pastable enough for you to tweak00:59
mgrandiis there a preferred way to backup a repository to a file, or is just zipping the directory pretty much01:00
vilamgrandi: <cough> ask mathrick ;)01:00
* mgrandi asks mathrick01:01
vilamgrandi: if you really want a *backup* 'bzr push' should be the fastest01:01
mgrandiim just sending my code to someone, including the repo for archival purposes01:02
vilamgrandi: sorry, that a was a joke, mathrick just ran into an issue while zipping on windows and unzipping on linux (special setup where an absolute path has been recorded)01:02
mgrandiinteresting o.o01:02
vilamgrandi: same os on the receiving side ?01:02
mgrandistack overflow says this; http://stackoverflow.com/questions/1976857/bzr-create-tgz-file-containing-full-repository01:03
mgrandimight not be01:03
vilabzr send is safest01:03
mgrandiwhat does bzr send actually do? generate patch files?01:03
mgrandiso this just creates a series of patch files or something?01:04
vilamgrandi: almost, they are called merge directives and contains both the revisions and a human-readable patch01:04
vilamgrandi: it's not lossless as patches can, you get the real revisions01:04
mgrandiinteresting, thanks01:05
vilamgrandi: the idea is that send accept a public url readable by both sides and create the delta between your branch and the public branch01:05
vilamgrandi: so it can be *far* smaller than zipping the whole repo (like the stackoverflow recipe suggests)01:06
mgrandiyeah, this isn't a problem here but i was just curious01:06
vilamgrandi: the recipe basically uses an empty branch as a starting point01:07
mgrandiso are there problems with zipping a bzr branch directory and then using it on a different os?01:07
vilamgrandi: not a bzr branch, a bzr-colo environment (plugin)01:07
mgrandiisn't that integrated into bzr now?01:08
vilathere is wip about native colocated branches yes, that's different01:08
mgrandibut normal branches should be fine? besides the whole symlinks thing01:09
mgrandithat i still need to work on...01:09
vilayes01:09
vilabut it's been a looong time since I did that myself, most of the machines I'm working on have ssh and bzr so it's easier to kust push ;)01:10
vila*just01:10
fullermdObviously, the solution is that somebody needs to donate vila a machine without ssh or bzr on it, to force him to work on it   :p01:11
vilafullermd: the last case was a windows vm where I managed to install ssh as a service anyway ;)01:12
fullermdI've probably got some OS/2 install media somewhere...01:12
vilafullermd: and if they don't have ssh but bzr, well, it's easy enough to pull instead of pushing ;-)01:12
fullermdvila: So, wait, you already fixed it, then re-broke it?  I mean, if the test was passing, that means everything's good, right?   :p01:14
vilahehe, that's where the test scripts shine: they can express failure more easily ;)01:17
fullermd'druther they expressed success   ;p01:19
vilatsk, tsk, they allow success to be *demonstrated*, that's TDD for you ;)01:21
fullermdI dunno, TDD sounds like something I'd discuss with my doctor in a hushed voice.01:22
mgrandidepends on who you ask. they really beat it into us at my school01:24
mgrandi=P01:24
fullermdWell, yes, I remember that from high school too, but...01:25
mgrandiunit test ALL THE THINGS01:25
vilaAlzheimer, Pratchett and I.. what was it I wanted to say...01:26
mgrandiso vila, i just tried that recipe out, and it seems useless cause you can't merge the file back into an empty repo =/01:26
vilaha yes, tests are good substitute for failing memory01:26
jelmermgrandi: you can pull it into an empty repo though01:26
* jelmer wonders if vila is in the US01:27
fullermdI do wish I had regression tests for stuff at work.  Sadly, I've never heard a good story for writing something useful considering the depth of stuff that breaks.01:27
vilajelmer: hehe, no ;)01:27
jelmer... or just up late :-)01:27
mgrandithen the documentation for send is slightly out of date01:27
vilajelmer: yeah :-} Bad vila, go to sleep01:27
mgrandi `bzr send` creates a compact data set that, when applied using bzr merge, has the same effect as merging from the source branch.01:27
fullermdNo, but using it to replicate whole histories is out of the scope of the docs.01:27
mgrandiwell it should still be mentioned that pull can be used as well01:27
fullermdAnd it does; merging the source branch into a branch with no history will also fail  ;p01:28
mgrandi'using bzr merge or pull, has the same effect etc01:28
vilamgrandi: that's supposed to work, there may be a bug for *empty* branches (worth filing too, I thought we nailed down all the empty-branch-are-special ones...)01:29
mgrandiwell it specifically gave a bug url when i tried to do it01:29
vilawhich one ?01:30
mgrandibzr: ERROR: Merging into empty branches not currently supported, https://bugs.launchpad.net/bzr/+bug/30856201:30
ubot5Ubuntu bug 82555 in Bazaar "duplicate for #308562 Merging to an empty branch doesn't work" [High,Confirmed]01:30
mgrandidang 5 years, old bug01:31
vilahelllo, someone remember the shortest workaround for that ?01:32
vila'bzr init . ; bzr pull <merge-directive>' ?01:32
mgrandiwell yeah thats what i did01:33
vilagood, my job here is done ;)01:33
mgrandiis that merge into empty repo a particuarly hard bug?01:35
fullermdI've never been quite clear as to what it's even supposed to _mean_.01:36
mgrandiprobably along the lines like, its trying to merge two histories but one doesn't exist so it breaks?01:36
fullermdYeah, the whole point of merge is "take these two separate things and bring them together", so how's it even meaningful to talk about when there's only one thing?01:38
vilaI think the issue is about root-ids (branches of the same project shares a unique id for their root)01:38
mgrandiwell, it still seems to me that bzr should be smart about that, and if one history just doesn't exist, then just take the other one01:38
vilathe first branch of a project gets a new root-id which is then duplicated01:38
vilamgrandi: devil is in the details01:39
mgrandii imagine01:39
vilathe fact that it's a corner case rarely encountered didn't help raise the bug importance01:39
vilamost of the issues are probably already solved, time is lacking for that one01:40
fullermdWell, taking the other one is "pull"  ;p01:41
fullermdIf I wanted "merge" to sometimes silently do a "pull" instead, I'd use git...01:41
mgrandihaha.01:41
mgrandimaybe the error message should be updated to say 'try pull instead?"01:42
gmarkalli'm having trouble rebasing a branch. I'd like to rebase the last five revisions onto another branch, but i can't seem to work out how to tell bzr that's what i want to do - i only seem to be able to rebase "all but the last 5" with -r last:5. Is there a way to do this please?07:36
bob2you mean you're using bzr-rewrite?07:37
gmarkall(if I don't specify a revision then bzr wants to rebase 54 revisions, which includes a lot of duplicate changes)07:37
gmarkallbob2: i think i am07:37
gmarkallbzr help rebase says "From: plugin "rewrite""07:37
lifelessgmarkall: you might try -r -5:..07:41
gmarkalllifeless: that gives me "Bzr has encountered an internal error..." - shall I submit a bug report?07:43
lifelesssure07:43
fullermdWithout the colon, probably...07:43
lifelessoh heh, yes.07:43
lifelessEOUTOFPRACTICE07:43
lifelessgmarkall: -r -5..07:43
gmarkallah, that didn't crash bzr! :-)07:44
=== dpb_ is now known as Guest76575
gmarkallI managaed to get the crash down to a small example: https://bugs.launchpad.net/bzr/+bug/107689408:08
ubot5Ubuntu bug 1076894 in Bazaar "Invalid arguments to rebase cause internal error" [Undecided,New]08:08
gmarkallI managed to choose the correct revisions with the syntax suggested by lifeless/fullermd - however, when i run with --dry-run, the commit ids that it shows are printed out-of-order - is that to be expected?08:10
gmarkallwhen i actually did the rebase, the commits were applied in the correct order08:16
mgzmorning!09:03
tbf__can i tell bzr to just commit the changes of a conflict free merge?09:06
tbf__constantly forgetting that commit and then messing up stuff09:06
tbf__(well, also lack the creativity to invent merge commit messages)09:07
tbf__ok. why would "bzr diff ../parent" show changes that a plain "diff -ru ../parent" doesn't see?09:17
=== tbf__ is now known as tbf
tbfapparently i still fundamentally fail in understanding things09:18
mgztbf: could be lots of reasons for the diff not being the same, fundamentally those two commands look at different stuff09:27
mgzso, for instance, if the working tree of ../parent is not up to date, plain recursive diff will not see the later revisions09:28
tbfmgz, ../parent is up-to-date09:32
tbfmgz, at least the output of "bzr status" and "bzr diff" in ../parent is empty09:33
tbfmgz, seems i seriously fail to understand even the basics of  bzr: http://nopaste.me/paste/111230873509cce138278909:35
tbfmgz, how can it be, that rev 334 contains changes from 316.1.64, while rev 333 is entirely empty?09:36
tbf316.1.64 is the last commit in that merge09:37
tbfi'd only expect to see that change in 334 if i'd reverted 316.1.64 by accident while commiting 33309:38
mgz...that paste site is borked, gives 406 + error fallout based on UA string09:47
mgztbf: from that log, I'm not sure what's suprising you09:48
tbfmgz, the output of "bzr diff -c 334 debian/control" entirely surprises me09:49
mgzthe diff for -r331..332 is empty, but the log above stops at 332 so that might be right, and 316.1.64 was merged in 33309:49
mgztbf: that command isn't in the paste09:50
tbfmgz, line 5109:50
tbfmgz, rev 333 already should have that change, but bzr shows it was applied again in 33409:51
mgzI suspect you have some funny history09:51
mgzyou remerged the same branch in 334?09:52
tbfmgz: forgot to commit a merge, shelved the mess. merged from parent again, unshelved.09:53
tbfexpecting that only the really new changes would get applied09:53
tbfnow bzr even crashes when accessing that branch09:54
tbfgreat.09:54
mgzokay, so the history and log/diff output is probably correct09:54
tbfapparently "bzr switch -r 333" was a stupid idea09:54
tbfmgz, how that?09:55
mgzr333 includes the merge, and the history of the other branch, but none of the actual changes09:55
mgzwhich you shelved, then committed in 33409:55
mgzso, log tells you 333 merged stuff, but diff only sees the changes when you actually committed them in 33409:56
mgzthe best thing to get out of trouble here is just make a new branch from 332 and do the merge right this time09:56
tbfmgz: "r333 includes the merge, and the history of the other branch, but none of the actual changes" - this makes absolutely no sense to me.09:57
tbfmaybe too much in git mind set. what stone i don't see?09:57
mgzyou merged the history from the other branch09:57
mgzbut left the actual text changes uncommitted09:57
mgzit's the same as doing that in git.09:57
tbfwell. in git i usually rebase09:57
tbfand stay away from merges09:58
tbftoo much vooodo09:58
tbfvoodoo and magic09:58
mgzyou like having a nice linear world view :)09:58
tbfmgz, yup :-)09:59
mgzanyway, the point of version control is you have the old stuff still09:59
mgzso you can just start from where you were originally and do it right, rather than trying to fix up the current state09:59
tbfmgz, sure. still at the point of merging a feature i don't care about the dirty details anymore10:00
tbfall that merging zig-zack and so on10:00
mgzlook, it's easy, do this:10:01
tbfas long as i work on the features i highly appreciate having different branches and switching between them comparing them, letting them divert, pick changes and so on...10:02
tbf...but once it is done. it is done.10:02
mgzcd .. && bzr branch -r332 old new && bzr merge -r 332.. -d new ../old10:04
mgzyou then have a new branch, with the just the text changes you made in the last few revs ready to commit, and no hisotry to confuse you10:05
mgzyou could bring in the original feature branch as a merge to make the history correct, but you probably don't care about that10:05
mathrickso how do install libraries needed by plugins in a standalone windows install?10:06
mathrickI thought it was $plugindir/lib/, but that doesn't seem to work10:06
mgzmathrick: what I did was use not use the windows standalone installers but the python ones and install all the plugins and bits I wanted via the normal setup.py method10:07
mgzthere was a thing added for the standalone ones to look in another location for libs though10:08
tbfmgz, checking what this does...10:08
mathrickmgz: I tried that before, but it's a huge PITA really and never works quite as well as the standalone installer10:09
mgzmathrick: try10:10
mgz$ BZR_PDB=1 bzr assert-fail10:10
mgz(Pdb) sys.path10:10
mgzwhich will tell you where the installed bzr looks for stuff10:10
mathrickah, good idea10:10
mathrickah, so site-packages has been added10:11
=== mmrazik is now known as mmrazik|lunch
=== mmrazik|lunch is now known as mmrazik
lolekhello all12:13
loleka question, i've installed bzr-eclipse, and i'm looking for option: compare with latest from repository ... that is available when using svn but with bzr repo ?12:13
lolekhmm ok, forget the question, found it, but the is only: compare with latest from branch, what if i want to specify revision ?12:15
jelmerlolek: I don't think bzr-exclipse is anywhere near usable, is it?12:59
lolekwell ... it is13:00
lolek:)13:00
lolekand oh one thing13:01
lolekregarding this: https://bugs.launchpad.net/bzr-svn/+bug/1076388, i've used svn:// when gave url :)13:01
ubot5Ubuntu bug 1076388 in Bazaar Subversion Plugin "authentication.conf section does not match when port is given" [Undecided,New]13:01
jelmerlolek: not sure I follow?13:02
lolekoh.. sorry my fault... mind shortcut13:02
lolekforget ;d13:02
mirtwoTBF!13:04
mirtwoboah ist die welt klein13:04
=== mirtwo is now known as mirabilos|work
jelmerlolek: sorry, me too :-)13:09
lolekmirabilos|work: could you please speak in english ?13:09
mirabilos|workyes13:09
mirabilos|work“the world is small”13:09
lolekthank You ;)13:10
mirabilos|worktbf was one of the first people I met on IRC, b̲e̲f̲o̲r̲e̲ I even spoke something resembling English13:10
tbfhey mirabilos|work13:13
lolekuhm13:14
tbfmirabilos|work, how long ago is this? 12 years?13:15
mirabilos|worksomething like that, yes13:15
mirabilos|workprobably around 1999/200013:15
loleka question, can i use this way of workflow for bzr and svn as centralized repo ? : http://doc.bazaar.canonical.com/bzr.2.5/en/tutorials/centralized_workflow.html14:13
loleki'm trying to figure out how bzr will deal with branches in folders on svn repo14:14
lolekof course if You have some suggestions or better aproach, i can consider that also14:16
karniHello folks. I have a problem committing u1-servers. bzr really wants to sign with my mkarnicki@gmail.com key, while I want to sign with michal.karnicki@canonical.com14:31
mgzkarni: see #launchpad14:32
jelmerkarni: it should be using your whoami details to find the gpg key14:32
karniIt's picking mkarnicki by default. How do I change that? I've tried overriding gpg_signing_key14:32
karniwhoami says michal.karnicki@canonical.com, but it's not using that one14:32
karnimgz: I think they'll send me back to #bzr :(14:33
mgzprobably :)14:33
karniTo make matters more "fun", I can sign with @canonical.com a different project with no fuss.14:33
karniI don't see any specific configuration to that project in my locations.conf14:33
karninor authentication.conf14:34
mgzkarni, okay, looking at the code14:35
karnimgz: Thank you!14:35
mgzgpg_signing_key should be either "default" or suitable for passing to gpg -u14:36
karniFWIW I tried passing my canonical e-mail as well as key signature (that's what you call it?) to gpg_signing_key14:36
mgzif default, it looks at 'email'14:36
karniright. I can try that again.14:36
karnishould I put it in ~/.bazaar/authentication.conf ?14:36
mgzkarni: nope, just bazaar.conf I think14:37
mgzapart from by having a different `bzr whoami --branch` I don't see how different projects could get you different signing14:38
karnimgz: I think it had something to do with me signing it within lxc..14:39
karnimgz: I did add it to authentication.conf, though14:39
karnimgz: I tried from my host machine, and it commited properly14:39
karniyeah, it's still trying to sign with mkarnicki@gmail.com within lxc14:40
karnimgz: I don't know how that works, but just so you guys know ↑14:40
mgzbut `bzr whoami` in lxc isn't that, and `gpg --clearsign -u ...@canonical.com` works?14:43
mgzpossibly lxc hides some of your keys, or confuses the agent in some way?14:44
mgzkarni: I can't find any key on your name on a gpg key server14:51
karnimgz: in lxc, bzr whoami is also: Michał Karnicki <michal.karnicki@canonical.com>14:52
karniSo correct.14:52
karnimgz: http://keyserver.ubuntu.com:11371/pks/lookup?op=vindex&search=0xF1044FC25FD638E714:53
karnimgz: I bet it's confusing the agent in some way14:53
mgzah, you have an 'i' on the end I'd not registered14:54
karni:)14:55
fullermdYou should vowel to be more careful with your spelling...14:58
mgzkarni: when you ran just the gpg command inside lxc, did it also want to sign with the wrong key?15:00
karniI can check15:00
mgzfullermd: @ expands to eat all adjacent characters15:00
mgz*munch* *munch*15:01
fullermdOnly to the right; you can see what's where the mouth is.15:01
karnimgz: gpg --sign desktop.png signs with mkarnicki, but -u michal.karnicki works to override and sign with the second key15:01
lolekok, one more time with my question, i'd like to use this approach: http://doc.bazaar.canonical.com/beta/en/user-guide/svn_plugin.html#using-a-central-repository-mirror but want to use svn as central repository, my question is what problems should i consider ?15:10
lolekthe problem is that i want to use that like this: http://doc.bazaar.canonical.com/bzr.2.5/en/tutorials/centralized_workflow.html, the second question is how bazar will work with branch in subdirectory on svn repo ?15:12
jelmerlolek: hi15:14
jelmerlolek: what do you mean with branch in subdirectory exactly?15:14
jelmerbzr-svn handles it fine if there is e.g. a branch named /trunk in the repository, and recognizes copies15:15
mgzkarni: last thing to see is run `bzr config` in the branch, see if gpg_signing_key is set anywhere up the chain15:30
karnimgz: bzr: ERROR: unknown command "config"15:30
jelmerkarni: your running a very old version of bzr15:31
karniBazaar (bzr) 2.1.4 in lxc (LUCID), 2.5.1 on host OS15:32
karniThis is because it's u1-servers branch, lucid was advised (although I hear it works on more current version)15:32
iwata0303Hi.15:35
iwata0303Does anyone know when bzr2.6b3 will come ?15:36
jelmervila, mgz: ^15:39
lolekjelmer: may i pm You ?15:40
jelmerlolek: sure15:41
mgzkarni: that might also be an issue with gpg signing then. you can, on lucid, us the bzr ppa to restore sanity to the world.16:03
karnimgz: ah. I might try that. I'll stick with committing from host for now :) Thank you!16:03
mgzkarni: ppa:bzr/ppa16:04
mgziwata0303: ideally soon16:04
iwata0303mgz: Thank you!16:05
karnimgz: Thank you, sir!16:05
mgzI'll send something to the list when I'm about to launch on working out how to do a release16:06
mgzhm.... the next couple of weekends are full, might need to find a weekday night16:06
embersoakerI merged and commited a branch in to trunk and then reverted it. Went back and changed my code in my branch and then when trying to merge again it won't let me. Is there a way to get trunk to forget that this branch was merged/conmitted before? or a way to force a commit?16:46
mgzyou merge trunk back into your branch, revert the tree but not the merge marker (`bzr revert .` && bzr commit), then merge the branch back into trunk16:52
mgzbasically, the feature branch needs to acknowledge the tree changes were not accepted on trunk, and have a new rev with the changes still present as well as trunk history so trunk knows to reapply them16:54
mgzembersoaker: ^that make sense to you?16:56
embersoakeryes16:58
embersoakerthank you16:58
vilamgz: I'll be in england next week, if connected the latency should be low ;)17:00
mgzoh ho ho, london?17:00
mgzall week?17:00
vilamgz: yup and yup17:00
mgzjelmer: ^17:00
jelmervila: where in England?17:01
vilalondon17:01
* jelmer will be in London from Wed-Fri17:01
* SamB_MacG5 grumbles about how ad-hoc bzr's commands are ...17:05
vilajelmer, mgz : I'll leave Friday afternoon, will need to check my schedule but... would be nice to have either lunch or dinner or something no ?17:24
=== deryck is now known as deryck[lunch]
jelmervila: yeah, that'd be great17:42
fullermdIf I start swimming now, maybe I can meet you there...17:43
vilafullermd: be my guest ;)17:43
* SamB_MacG5 is especially thinking that "bzr missing" should support most of the options of "bzr log", like -p ...18:35
fullermdhttps://lists.ubuntu.com/archives/bazaar/2008q2/041074.html   :p18:39
=== deryck[lunch] is now known as deryck
=== yofel_ is now known as yofel
delinquentme_ls22:23
delinquentme_derp!22:23
delinquentme_I have config files ... I'd like a new user to be able to have access to a version of them ... but not mine ...22:24
delinquentme_SO .. can I include files within a bzr repo which aren't VC'ed ?22:24
fullermdWell, you can PUT a file there and ignore it.  Obviously bzr won't know anything about it, so you'd have to put it there (if it's important) any time you make a WT.22:31
delinquentme_WT?22:32
delinquentme_fullermd, ?22:32
lifelessworking tree22:32
fullermdOh, shucks.  If I'd known lifeless was here, I'd have just hit 6 or 8 keys at random, and he'd interpret a correct answer out of it...22:33

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!