/srv/irclogs.ubuntu.com/2007/09/28/#bzr.txt

james_wlifeless: thanks.12:04
=== RichardL [n=Skippy@78.32.35.169] has joined #bzr
=== jml [n=jml@ppp121-44-213-76.lns1.hba1.internode.on.net] has joined #bzr
=== cprov [n=cprov@canonical/launchpad/cprov] has joined #bzr
=== BasicMac [n=BasicOSX@216-243-162-1.static.iphouse.net] has joined #bzr
=== BasicMac is now known as Basic
pooliehello01:29
pooliei love when people ping me on irc at 3am :)01:29
fullermdHeck, I see you pinging on irc at 3am all the time   ;p01:31
poolieat least they're not phoning i guess...01:37
pooliespiv, ping?01:37
=== igc [n=igc@ppp121-45-227-231.lns1.bne4.internode.on.net] has joined #bzr
igcmorning01:48
pooliehi igc01:52
lifelesspoolie: well, we can fix that01:59
=== AfC [i=andrew@office.syd.operationaldynamics.com] has joined #bzr
=== igc [n=igc@ppp121-45-227-231.lns1.bne4.internode.on.net] has joined #bzr
=== orospakr [n=orospakr@CPE001c1019cfc4-CM0011ae034e04.cpe.net.cable.rogers.com] has joined #bzr
=== jml [n=jml@ppp108-61.static.internode.on.net] has joined #bzr
=== thumper [n=tim@125-236-193-95.adsl.xtra.co.nz] has joined #bzr
=== welterde [n=welterde@trujillo.srv.pocoo.org] has joined #bzr
=== metze_ [n=metze@ip-217-172-181-76.mx-netz.de] has joined #bzr
=== pete__c [n=pete@032-463-246.area7.spcsdns.net] has joined #bzr
=== nir [n=nir@moinmoin/fan/nir] has joined #bzr
=== igc food
igcI'll review the patch from lifeless after that04:00
=== AfC [i=andrew@office.syd.operationaldynamics.com] has joined #bzr
=== bignose [n=bignose@eth595.vic.adsl.internode.on.net] has joined #bzr
bignose"bzr: ERROR: No WorkingTree exists for file:///foo/bar/.bzr/checkout/."05:39
bignoseThis branch was created by a remote 'bzr push --create'.05:39
bignoseHow do I change it so it has a working tree?05:39
bignoseI see the 'bzr remove-tree' command; I awant the opposite, 'add-tree'.05:40
=== poolie_ [n=mbp@ppp112-44.static.internode.on.net] has joined #bzr
=== poolie__ [n=mbp@ppp112-44.static.internode.on.net] has joined #bzr
=== BasicOSX [n=BasicOSX@warden.real-time.com] has joined #bzr
bignosepoolie__: I have a question you may have missed in this channel, may I ask it again?05:57
=== poolfool [n=mchaffin@c-71-196-179-226.hsd1.co.comcast.net] has joined #bzr
poolfoolCould someone please give tell me how to join (merge?) two different bzr repositories? I have one repo (~/public_html) and a second (~/development) that I would like to join (merge?) (~/repo)?06:05
poolie_bignose: sure06:07
bignosepoolfool: what do you want the end result to be?06:07
bignosepoolie_: here it comes06:07
bignose"bzr: ERROR: No WorkingTree exists for file:///foo/bar/.bzr/checkout/."06:07
=== BasicOSX [n=BasicOSX@warden.real-time.com] has joined #bzr
bignoseThis branch was created by a remote 'bzr push --create'.06:08
bignoseHow do I change it so it has a working tree?06:08
bignoseI see the 'bzr remove-tree' command; I awant the opposite, 'add-tree'.06:08
poolfoolbignose: End result? I would like to merge both repositories (including history) into a single repo ... similar to 'svn-style' where I have 'repo/<project[a...b] /'. I really don't want to loose the history.06:10
bignoseBazaar (bzr) 0.18.006:10
bignosepoolfool: so, the two branches have similar files and similar structure; you want one of them to become "the" branch. yes?06:11
poolfoolbignose: No, the two repositories do /not/ have similar files ... I did find someone in the mailling list trying to do that.06:12
poolfoolbignose: No, I want to merge two different repo's that have individual projects into a single repo.06:12
bignosepoolfool: (note that "repo" is a different thing to "branch" in Bazaar.)06:13
bignosepoolfool: can you describe what the end result would be? what would happen to either or both of "~/public_html/" and "~/development/"?06:13
poolfoolbignose: Got that. Maybe some background, I wanted to try out bazaar so I choose to use 'public_html' #bzr init ... <do some revision and updates>06:14
poolfoolbignose: Bazaar is pretty good ...  I choose to put some small project in 'development' under revision control # cd ~/development; bzr init <do some revision and update>06:16
poolfoolbignose: Oops ... now I have .bzr <repo> in two different places (~/public_html and ~/development) each with working copies checked out too.06:16
bignosepoolfool: ah, there's the disconnect. the '~/public_html/.bzr/' directory is *not* a repo, it's a branch.06:17
bignoseor rather, it's not a "shared repository", which is what is often lazily called a "repo".06:17
poolfoolbignose: I guess I am trying to now move to a more CVS repo like I am used to.06:17
bignosepoolfool: you can set up a shared repository with 'bzr init-repository ~/Projects/'06:18
bignosepoolfool: and then 'bzr branch ~/public_html/ ~/Projects/public_html/'06:19
bignosepoolfool: you'll then have the shared repository '~/Projects/', and within it a branch '~/public_html/'06:19
bignosepoolfool: but remember that the shared repository is only useful once you start branching *within* that repository, e.g. 'bzr branch ~/Projects/public_html/ ~/Projects/public_html.coolnewfeature/'06:20
bignosepoolfool: i.e. shared repositories are only useful because they share revision data; identical revisions (i.e. ones common to two or more branches with common ancestry)06:21
poolfoolbignose: Ok, I am still digesting and reading more documentation at bazaar-vcs.org?06:23
bignosepoolfool: you can then 'bzr branch ~/development/ ~/Projects/development/', but of course that branch will have no common revisions with any of the 'public_html' branches that exist in the '~/Projects/' repository06:23
poolfoolbignose: So 1) Everything, including '#bzr init' are branches, 2) a repo is a shared /branch/, and 3) shared branches only include 'common ancestry'?06:24
bignosepoolfool: not quite. all branches have repositories; but 'bzr init-repository' sets up a *shared* repository that allows branches inside that directory to share revision data.06:25
poolfoolbignose: One more time for the cheap seats, '~/Projects/dev...' and '~/Projects/public...' will have no common revisions between them? Great ... just what I wanted.06:25
bignosepoolfool: your existing '~/development/' branch has a repository, that lives inside that branch alone and isn't shared, even if you branch from it06:25
bignosepoolfool: the only reason to set up a repository is to make it even cheaper and faster to branch, because the common revision data will stay in one place.06:26
bignose(well, that's the only reason I use it. there may be others.)06:26
=== BasicMac [n=BasicOSX@warden.real-time.com] has joined #bzr
bignosepoolfool: any time you 'bzr branch' from a branch *inside* the shared repository to one *outside*, all the necessary revision history will be carried along. it's only branches within the shared repo that share their revision data.06:27
=== BasicOSX [n=BasicOSX@warden.real-time.com] has joined #bzr
bignosepoolfool: so, the space and speed advantages of a centralised repository containing many possibly-unrelated branches; with all the benefits of being able to branch those elsewhere at will.06:28
poolie_bignose: in older versions, use 'bzr checkout .' in that tree; in newer ones 'bzr reconfigure --tree'06:29
poolie_hth06:29
=== poolie_ is now known as poolie
poolfoolpoolie_: 'reconfigure --tree' can you use that command to convert a dirstate tree to dirstate-tags tree?06:30
poolfoolbignose: Ok ... thank you I think I get it. I just started to try out Bazaar and well I am used to my CVS frame of mind where all projects are in the same repo. Not several different 'branches' left around the file system.06:32
bignosepoolfool: yes, you definitely want a shared repository.06:32
pooliepoolfool: no, that's 'upgrade'06:32
pooliereconfigure switches between different kinds of bzrdir in the same format06:33
bignosepoolfool: you also want to read about the 'bzr checkout' command; it lets you treat a branch elsewhere as "the central branch", and commit changes simultaneously to both the central and local working tree.06:33
pooliei guess maybe upgrade should be considered a subset of reconfigure06:33
pooliebut it is not at present06:33
poolfoolbignose: The only thing I do not get is, if I setup a 'shared repo' as you explained ... will I keep the existing history of the branch (public_html) when I branch to the 'shared repo'?06:33
bignosepoolfool: 'bzr branch foo/ bzr/' always preserves the complete history of the branch.06:34
bignoseerm, that should be 'bzr branch foo bzr/' for clarity :-)06:34
bignoseargh06:34
bignoseerm, that should be 'bzr branch foo bar/' for clarity :-)06:34
poolfoolbignose: no problem. Thanks again for the help.06:34
poolfoolbignose: are you a bazaar developer?06:34
bignosepoolfool: no, just a fan :-)06:35
bignoseI've been using Bazaar since it was the throwaway prototype for the new version of GNU Arch06:35
bignosethen it because the not-to-be-thrown-away much improved system that gets rid of all Arch's cruft :-)06:36
poolfoolbignose: well I am sold ... no more monster patch to and from work on thumb drives to commit after hours of work at home.06:36
bignoses/because/became/06:37
poolfoolbignose: I could never wrap my head around the funny file names of Arch ... but I have thought the idea of distributed (cheap branch) rcs was a good idea.06:37
bignoseyep. GNU Arch paved the way for all this good stuff, and Tom Lord deserves more money than he ever got from it.06:37
poolfoolbignose: Name me two good people who ever get the money they deserve?06:38
bignosewell, if you insist on the "good" qualifier, I can't :-)06:38
poolfoolNext stupid question, I original ran '#bzr init' and now have a 'dirstate(?)' branch; can I convert(?) to 'dirstate-tags'? Or can you tag 'dirstate'?06:40
bignosepoolie: yes, 'bzr checkout .', while completely unintuitive, does seem to have done the trick.06:41
bignosepoolie: I'm glad it has become 'reconfigure --tree'.06:41
bignosepoolfool: one tip with 'bzr checkout'; get accustomed to doing 'bzr info' in a cranch to determine whether it's a checkout (bound to a remote branch) or not.06:42
bignoses/cranch/branch/06:42
bignoseman, my typing is lousy today.06:43
poolfoolwow ... now I am scared because I read that right before the correction.06:43
poolielifeless: just a ping about debs06:47
=== poolfool [n=mchaffin@c-71-196-179-226.hsd1.co.comcast.net] has left #bzr []
=== ubuntulog [i=ubuntulo@trider-g7.fabbione.net] has joined #bzr
=== Topic for #bzr: The Bazaar Version Control System | http://bazaar-vcs.org/ | Bazaar 0.91 is out - http://bazaar-vcs.org/Download | Please complete the Bazaar User Survey - http://www.surveymonkey.com/s.aspx?sm=L94RvLswhKdktrxiHWiX3g_3d_3d
=== Topic (#bzr): set by poolie at Wed Sep 26 07:07:44 2007
=== #bzr [freenode-info] if you need to send private messages, please register: http://freenode.net/faq.shtml#privmsg
=== pmezard [n=pmezard@dhcp26-103.enst.fr] has joined #bzr
=== spiv -> slug
=== mvo [n=egon@p54A67C68.dip.t-dialin.net] has joined #bzr
=== mrevell [n=matthew@canonical/launchpad/mrevell] has joined #bzr
mrevelligc: Hi10:05
igchi mrevell10:05
mrevellhey igc - would now be a good time to have a quick chat?10:05
igcyes10:06
igcmrevell: how about I call you?10:07
=== Zindar [n=erik@stockholm.ardendo.se] has joined #bzr
=== adedov [n=adedov@swsoft-gw.cbnet.ru] has left #bzr []
=== jml [n=jml@ppp121-44-213-76.lns1.hba1.internode.on.net] has joined #bzr
=== jkakar [n=jkakar@204-174-36-45.dhcp802.dsl.ucc-net.ca] has joined #bzr
=== RichardL [n=Skippy@78.32.35.169] has joined #bzr
igcnight all - have a good weekend10:36
=== hmeland [i=29578@klodrik.uio.no] has joined #bzr
=== allenap [i=allenap@nat/canonical/x-97014306aede8c16] has joined #bzr
=== Zindar_ [n=erik@stockholm.ardendo.se] has joined #bzr
=== Zindar_ [n=erik@stockholm.ardendo.se] has joined #bzr
=== RichardL [n=Skippy@78.32.35.169] has joined #bzr
=== steko [n=steko@generic-nat.unisi.it] has joined #bzr
stekohi, I'm trying to convert a little darcs repo to bzr using tailor, but I have problems http://pastebin.com/m1ff6d86b11:36
stekois there another way to to darcs > bzr ?11:36
fullermdI don't know of one.11:45
fullermdThat actually looks like a problem on the darcs side of tailor.11:45
fullermdI'm given to understand there are some current bumps on the bzr side of it too   :|11:46
=== GaryvdM_ [n=chatzill@196.11.241.45] has joined #bzr
stekofullermd: I know. but it's not good to ask on ##darcs how to stop using darcs itself! :-)11:46
=== g0ph3r [n=g0ph3r@p57A0AA70.dip0.t-ipconnect.de] has joined #bzr
=== GaryvdM_ is now known as GaryvdM
=== Zindar [n=erik@stockholm.ardendo.se] has joined #bzr
=== hdima [n=hdima@idealer.cust.smartspb.net] has joined #bzr
=== RichardL is now known as rml
=== bac [n=bac@canonical/launchpad/bac] has joined #bzr
=== NamNguyen [n=NamNguye@cm38.delta196.maxonline.com.sg] has joined #bzr
=== ipkiss [i=ipkiss@nat/ecp/x-de0f73d1ca537c0b] has left #bzr []
=== mrevell is now known as mrevell-lunch
=== oly_mk2 [n=oly@62.7.224.200] has joined #bzr
oly_mk2hi could do with some help with bzr please,01:14
oly_mk2i am trying to update a local branch but it wants me to first commit my changes is there anyway i can cancel my changes01:15
oly_mk2and just do a merge ?01:15
GaryvdMAre you sure that your changes are not important01:15
oly_mk2yes they where changes to try and fix a problem as a test,01:16
GaryvdMCheck what has been changed with a bzr status and/or bzr diff01:16
oly_mk2basically i am developing on one machine commiting then pulling on other machine01:16
GaryvdMIf you don't want the changes any more you can bzr revert01:16
oly_mk2i think i am using bzr wrong on my test machine to be honest01:17
oly_mk2i use bzr branch and bzr merge to update01:17
oly_mk2on the test machine but i never want changes to go back from test machine01:17
oly_mk2thanks bzr revert does exactly what i need01:18
GaryvdMYou should probaly use bzr pull on your test machine01:18
GaryvdMinsted of merge01:19
oly_mk2okay, thxs i did get confused between checkout pull and branch at one point01:19
oly_mk2i started of with pull i think, and changed01:19
oly_mk2i will give that a try01:19
=== Zindar_ [n=erik@stockholm.ardendo.se] has joined #bzr
oly_mk2thxs for the help though appreciated,01:21
GaryvdMIt's a pleasure01:21
=== Nozz [i=huh@port745.ds1-van.adsl.cybercity.dk] has joined #bzr
=== luks [n=lukas@unaffiliated/luks] has joined #bzr
=== mrevell-lunch is now known as mrevell
=== corporate_cookie [n=richie@seraphim.asbury.edu] has joined #bzr
=== corporate_cookie [n=richie@seraphim.asbury.edu] has joined #bzr
=== niemeyer [n=niemeyer@200-140-230-150.ctame705.dsl.brasiltelecom.net.br] has joined #bzr
=== lukas__ [n=lukas@comp55-56.vpn.muni.cz] has joined #bzr
=== lukas__ is now known as luks
=== mw [n=mw@189.146.13.202] has joined #bzr
=== sabdfl [i=sabdfl@ubuntu/member/pdpc.silver.sabdfl] has joined #bzr
=== fog [n=fog@debian/developer/fog] has joined #bzr
=== poolie_ [n=mbp@ppp112-44.static.internode.on.net] has joined #bzr
=== rml [n=Skippy@78.32.35.169] has joined #bzr
=== RichardL [n=Skippy@78.32.35.169] has joined #bzr
=== phanatic [n=phanatic@3e44adce.adsl.enternet.hu] has joined #bzr
=== bwinton [n=bwinton@mail.phantomfiber.com] has joined #bzr
=== boggle [n=spindler@modemcable178.77-70-69.static.videotron.ca] has joined #bzr
=== asak [n=alexis@200-171-71-233.dsl.telesp.net.br] has joined #bzr
spivlifeless: turns out stacking test adapters isn't *too* difficult.03:54
=== RichardL [n=Skippy@78.32.35.169] has joined #bzr
=== mlh [n=mlh@c211-30-211-232.belrs1.nsw.optusnet.com.au] has joined #bzr
=== Vernius_ [n=tomger@p508AEF3C.dip.t-dialin.net] has left #bzr []
=== tchan [n=tchan@lunar-linux/developer/tchan] has joined #bzr
spivabentley: my reconcile work has been mailed to the list04:38
spivabentley: it turned out to be much bigger than I anticipated, but if you can forgive that I'd love to get your feedback on it.04:39
=== spiv -> bed
=== RichardL [n=Skippy@78.32.35.169] has joined #bzr
=== juliank [n=juliank@f049186095.adsl.alicedsl.de] has joined #bzr
=== poolfool [n=poolfool@techsat21.itnes.com] has joined #bzr
=== poolfool [n=poolfool@techsat21.itnes.com] has joined #bzr
=== adedov [n=bada@gw.nsib.ru] has joined #bzr
adedovhello04:56
=== boggle is now known as TeTeT
=== juliank [n=juliank@f049186095.adsl.alicedsl.de] has joined #bzr
adedovIt seems, I still cannot get principles of DRCS... Am I right that if I have, say, two branches than they will always have different revision history even being synchronized each to another?05:01
fullermdYes and No and Maybe and It Depends.05:02
radixgiven he said "always", I would say the answer is "no" :)05:02
mwAsk not fullermd for council, for he will say Yes and No and Maybe and It Depends.05:02
radixheh05:02
adedov:)05:02
fullermdWell, it _can_ be always, if you work it that way.  And it can be never, if you work it that way, and anywhere in between.05:03
radixadedov: no, two branches can have the same revision history. "bzr branch foo bar" makes a branch "bar" which has the same history as "foo".05:03
adedovI have already told my history today on this chat. However... I have three branches: at launchpad, at home, and at office. And each time I commit to a local branch (either at home or at office) I push changes on launchpad. After that I need merge another one and commit merge results locally. And finally I must push commit results back to launchpad. It appears that launchpad's branch will be always contain merge results of it-self...05:05
radixadedov: sure, and that's fine.05:06
radixadedov: actually....05:06
radixadedov: you don't need to merge if the two branches haven't diverged05:06
luksadedov, if you are the only developer, you probably want pull instead of merge05:06
radixadedov: you could just be pulling from launchpad instead of merging05:06
adedovradix: right, but once they diverged, I merge, commit and push... and launchpad constantly hides its previous history with merged results.05:07
radixadedov: "hides"?05:08
adedovhmm... I look into branch log and I see records rearanged.05:08
adedovplease tell me common practice of commiting merge results? is it ok commit as 'Merge with xxx branch' or it is better to name all the changes in merge?05:09
radixadedov: the former05:10
radixadedov: all the changes in the merge are still there, so there's no need to name all of them in the merge commit message05:10
Solarionhttp://ooextras.sourceforge.net/http://ooextras.sourceforge.net/aaaaaa05:10
Solarionsorry, terminal seems to have gone haywire05:11
adedovradix: in this case, after pushing merged revision to launchpad, the branch log on launchpad lists records like 'Merge with main' (which actually the launchpad's branch name)05:12
adedovreadability suffers05:12
radixadedov: what's the problem?05:12
radixmaybe the problem is that launchpad doesn't make it easy to see the merged revisions?05:13
radix(although maybe it does, I don't know)05:13
radixbut like I said, if you're not diverging the branches, you have no need to merge, and instead you can just pull.05:13
poolfooladedov: Are you trying to use launchpad as a common central repo for your work at home and office?05:14
adedovradix: OK. I think my head needs time to get it all :)05:14
adedovpoolfool: yes05:14
poolfooladedov: Ok, then it makes a little more sense to me ... that and what bignose said last night. What is your past RCS?05:15
adedovpoolfool: CVS05:15
adedovpoolfool: I know it is awful :)05:16
poolfooladedov: Me too .... totally different train of thought, but you can use bazaar kind of like CVS with a central (blessed) repo (launchpad).05:16
adedovpoolfool: I know that, but I also like to have an ability making local commits before getting new feature mature enough.05:17
adedovpoolfool: or I need have a branch per feature in this case?05:18
poolfooladedov: Exactly, you are on the right track ... now come the details.05:18
poolfooladedov: I work alone (or with few other people) in CVS and try to branch often ... bad idea I know. But bazaar works better that way. I branch for each new feature (within reason).05:20
=== RichardL [n=Skippy@78.32.35.169] has joined #bzr
poolfooladedov: Ok, here is my conversation last night with bignose (nice guy) who helped to clear up some things. I am still learning ... but it sounds like you are trying to do what I want to do; remote distributed development checked into a common central repo.05:22
poolfooladedov: http://pastebin.com/m32b3d22005:22
adedovpoolfool: aha. thank you!05:22
=== orospakr [n=orospakr@132.213.238.4] has joined #bzr
poolfooladedov: Have you read the workflow section at bazaar? http://bazaar-vcs.org/Workflows05:23
adedovpoolfool: long time ago. before I started use bzr. I will re-read :)05:24
=== RichardL is now known as rml
=== bwinton [n=bwinton@mail.phantomfiber.com] has left #bzr []
=== adedov [n=bada@gw.nsib.ru] has left #bzr []
TeTeTcan some bzr expert take  a look at https://wiki.ubuntu.com/Training/KnowledgeBase please and see if I made any glaring errors on how to use bazaar for the desktop course?05:36
=== Kinnison [n=dsilvers@spoo.flarn.net] has joined #bzr
=== schierbeck [n=daniel@dasch.egmont-kol.dk] has joined #bzr
=== jrydberg [n=Johan@c80-216-246-123.bredband.comhem.se] has joined #bzr
=== dpm [n=dpm@p54A13460.dip0.t-ipconnect.de] has joined #bzr
=== jrydberg__ [n=Johan@c80-216-246-123.bredband.comhem.se] has joined #bzr
schierbeckphanatic: hi05:45
phanatichey schierbeck05:45
mrevellhey phanatic05:45
schierbeckphanatic: have you decided on what to do with brokenlines?05:45
phanatichey mrevell :)05:46
phanaticschierbeck: i was about to send a mail to the list05:46
schierbeckphanatic: ooooh :D05:46
phanaticmail sent :)05:49
phanaticschierbeck: i got your test mail :P05:50
schierbeckgreat!05:50
schierbeckwhat about the merge requests?05:50
phanaticthese mails have made it to the list: https://lists.canonical.com/archives/bzr-gtk/2007-September/thread.html05:51
schierbeckwow, they did come through05:51
schierbeckit's weird -- it seems like they were responses to other messages...05:52
phanaticyes05:54
schierbeckdoesn't show up that way in evolution, though...05:56
schierbeckphanatic: have you had a look at the viz-change-title branch?05:57
schierbeck*viz-window-title05:57
phanaticnot yet, but i'll do have a look at all merge requests during the weekend05:59
schierbeckcool05:59
schierbeckbtw, it was a sound decision to merge brokenlines05:59
=== p4tux [n=p4tux@189.169.70.141] has joined #bzr
schierbeckwaiting longer would've put off other changes to the viz06:00
schierbeckwell, i'm gonna go make some dinner, see you later06:00
=== BasicOSX [n=BasicOSX@warden.real-time.com] has joined #bzr
=== cypherbios [n=cyr@ubuntu/member/cypherbios] has joined #bzr
=== mrevell [n=matthew@canonical/launchpad/mrevell] has joined #bzr
=== phanatic [n=phanatic@3e44adce.adsl.enternet.hu] has joined #bzr
=== BasicOSX [n=BasicOSX@gatekeeper.real-time.com] has joined #bzr
ubotuNew bug: #146379 in bzr "Wrong format suggested when subtrees are required." [Undecided,New]  https://launchpad.net/bugs/14637906:40
=== rml [n=Skippy@78.32.35.169] has joined #bzr
=== fog [n=fog@debian/developer/fog] has left #bzr []
=== bialix [i=chatzill@77.109.21.196] has joined #bzr
=== mtaylor [n=mtaylor@dsl231-061-195.sea1.dsl.speakeasy.net] has joined #bzr
mtaylorif I get this when trying to do a push:07:06
mtaylorbzr: ERROR: Can't rename /srv/sm-ng/push-branches/00/00/0e/49/.bzr/repository/lock/5jz7rhqnlo.tmp to /srv/sm-ng/push-branches/00/00/0e/49/.bzr/repository/lock/held: /srv/sm-ng/push-branches/00/00/0e/49/.bzr/repository/lock/held already exist07:06
=== corporate_cookie [n=richie@seraphim.asbury.edu] has joined #bzr
=== juliank [n=juliank@f049186095.adsl.alicedsl.de] has joined #bzr
mtayloris that a lock held on the server repos?07:15
mtaylorif so, how can I clear it?07:15
fullermdI thought it gave you a 'lock already held' error when it noticed something.  Maybe that particular error means you lost a locking race?07:16
=== rele [n=Ash@dslb-084-059-050-055.pools.arcor-ip.net] has joined #bzr
=== jrydberg [n=Johan@c80-216-246-123.bredband.comhem.se] has joined #bzr
releIs there someone responsible for the Bazaar website?07:21
releThe Windows downloads at http://bazaar-vcs.org/Download are still the old 0.90 versions, despite the link text mentions 0.91. (Last-Modified: Sun, 02 Sep 2007 14:31:44 GMT)07:21
releStill 0.90:07:21
relehttp://bazaar-vcs.org/releases/win32/bzr-setup-latest.exe07:21
relehttp://bazaar-vcs.org/releases/win32/bzr-latest.win32-py2.5.exe07:21
relehttp://bazaar-vcs.org/releases/win32/bzr-latest.win32-py2.4.exe07:21
fullermdThat's know.  Something on the list about it.  0.91 is there, the -latest links just don't point to it.07:22
rele@fullermd: thx!07:28
=== weltende [n=welterde@gandalf.srv.welterde.de] has joined #bzr
=== welterde [n=welterde@trujillo.srv.pocoo.org] has left #bzr []
=== rele [n=Ash@dslb-084-059-050-055.pools.arcor-ip.net] has left #bzr []
=== rml [n=Skippy@78.32.35.169] has joined #bzr
=== weltende is now known as welterde
=== TeTeT [n=spindler@modemcable178.77-70-69.static.videotron.ca] has joined #bzr
TeTeTis the channel logged somewhere?07:58
TeTeT!ubuntulog log07:59
ubotuSorry, I don't know anything about ubuntulog log - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi07:59
james_wTeTeT: yes. I just can't remember where.08:04
james_whttp://people.ubuntu.com/~fabbione/irclogs/ has some08:05
=== bigdog [n=scmikes@72-197-8-8-arpa.cust.cinci.current.net] has joined #bzr
=== luks [n=lukas@unaffiliated/luks] has joined #bzr
=== BjornT [n=bjorn@canonical/launchpad/BjornT] has joined #bzr
=== jkakar [n=jkakar@204-174-36-45.dhcp802.dsl.ucc-net.ca] has joined #bzr
=== pmezard [n=pmezard@nor75-4-81-56-59-92.fbx.proxad.net] has joined #bzr
=== grimboy [n=grimboy@85-211-255-212.dsl.pipex.com] has joined #bzr
=== jamesh [n=james@canonical/launchpad/jamesh] has joined #bzr
=== pmezard [n=pmezard@nor75-4-81-56-59-92.fbx.proxad.net] has left #bzr []
=== laughingandjokin [n=laughing@dsl081-061-006.sfo1.dsl.speakeasy.net] has joined #bzr
=== hexmode [n=user@24.152.223.166.res-cmts.eph.ptd.net] has joined #bzr
=== grimboy [n=grimboy@85-211-255-37.dsl.pipex.com] has joined #bzr
=== laughingandjokin [n=laughing@dsl081-061-006.sfo1.dsl.speakeasy.net] has joined #bzr
=== schierbeck [n=daniel@dasch.egmont-kol.dk] has joined #bzr
=== BasicOSX [n=BasicOSX@216-250-174-201.static.iphouse.net] has joined #bzr
=== jkakar [n=jkakar@204-174-36-45.dhcp802.dsl.ucc-net.ca] has joined #bzr
=== jkakar_ [n=jkakar@204-174-36-45.dhcp802.dsl.ucc-net.ca] has joined #bzr
=== p4tux [n=p4tux@189.169.70.141] has joined #bzr
=== jamesh_ [n=james@canonical/launchpad/jamesh] has joined #bzr
=== jamesh_ [n=james@canonical/launchpad/jamesh] has joined #bzr

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