[00:08] Hello. I'm a bzr newbie (well not really, used it a little bit about 10 years ago), trying to get to see all branches in a repo ,i.e. explore a repo. [00:09] I'm on Debian and I've installed bzr-explorer with its dependency qbzr. [00:09] Those tools sound like they would do what t [00:09] I want, but, I can't figure out how to start the, [00:09] m, those packages don't have a single entry in any */bin/ [00:09] directory. (sorry, my return key is funky, triggers all the time.) [00:10] Basically I'm looking for the equivalent of "gitk --all". [00:28] Can a bzr repository contain multiple branches like Git? How can I list them? "bzr branches" shows 1 line, "* (default)". [00:28] Do I need to pass options to "bzr clone" to get more than the default branch? [00:30] Running qlog on a dir will find all the branches under it, 'branches' needs -R to work right, clone is just an alias for branch which pulls the given branch (not 'default', as that lacks meaningful meaning) [00:37] Or more explicitly, bzr practically never does repository-level operations, it's essentially all branch-level. [00:38] (repos are mostly just a storage space optimisation in bzr) [00:46] try just 'bzr explorer' ? [00:47] to start bazaar explorer [00:47] or any of the 'q' commands like fullermd_ said [01:52] I just installed Bazaar on OSX 10.7.5, using the 2.6.0 installer from http://wiki.bazaar.canonical.com/MacOSXDownloads How can I find out where this might have put bzrlib? [01:55] bzr version says. [01:56] bzr version says "ERROR: Couldn't import bzrlib and dependencies. Please check the directory containing bzrlib is on your PYTHONPATH." Beeep. [01:56] recursion: see recursion [01:57] OK, so we know the answer is "not where it should be" :) [01:57] progress! [02:00] Well, find(1) found /Library/Python/2.6/site-packages/bzrlib [02:01] How much of that needs to go in the PYTHONPATH [02:02] Up through the 2.6 I think. Though the real answer should be "none of it", since it sounds more like the bzr install isn't really in sync with your python install, so forcing it may not put you in a good place anyway. [02:03] The really annoying thing is that I only need Bazaar in order to get a Go library. So I'm three levels down a stack of incidental complexity. [02:05] Maybe you can shortcut that away. [02:05] ??? [02:05] What lib where? [02:06] "launchpad.net/goyaml" [02:06] LP has tarball downloads. [02:07] For that matter, up top of that page it points at github. [02:09] So really, what we need to do is get bzr working and bzr-git installed, so you can use that to get git, and use that to get it :) [02:09] erm, which page? I _have_ git [02:09] https://launchpad.net/goyaml says "PROJECT MOVED: https://github.com/go-yaml/go-yaml-v1" right up top. [02:12] Thanks! That looks promising. [02:16] I hope I don't have to understand yaml.Unmarshal([]byte(data), &t) just to parse some YAML :-) [02:16] Of course not; you just do it in perl instead ;) [02:18] Actually, I have this script running in Ruby and Julia, but neither is very fast, so I'm trying Go. [02:18] I haven't written any Perl in several years, but... [02:24] Does Go have a simple way to print a data structure, ala Ruby's inspect method? [02:25] I'm getting '{ {%!s(int=0) []}}' for a hash, which doesn't show me the data... [02:25] Dunno. Getting from "passingly aware" to "working knowledge" of go hasn't get gotten within a loud shout of the top of my todo list. [02:26] s/get/yet/ [02:35] Maybe https://github.com/davecgh/go-spew ? [02:36] (from http://stackoverflow.com/questions/12540057/is-there-a-go-language-equivalent-to-perls-dumper-method-in-datadumper ) [02:56] Rich_Morin: sorry for your troubles! thats a mac issue, since they changed what version of python that is called when you just call 'python' [02:56] https://bugs.launchpad.net/bzr-mac-installers/+bug/731391/comments/25 [02:56] Ubuntu bug 731391 in Bazaar Mac Installers "bzr: ERROR: Couldn't import bzrlib and dependencies. Please check the directory containing bzrlib is on your PYTHONPATH. Traceback (most recent call last): File "/usr/local/bin/bzr", line 102, in import bzrlib ImportError: No module named bzrlib" [Medium,Fix released] [02:57] you just have to edit the top line of the script and make it call python2.6 rather then python [02:57] and i have to go, but good luck! =) [02:57] tnx [03:19] Fortunately, the library I wanted to install in Go has been moved to another site that doesn't use Bazaar, so I can move on. [04:17] OK, I've created my launchpad site, added ssh keys but every time I try "bzr push ...etc" I get "No new revisions or tags to push." [04:17] But there are plenty of files in my directory to push [04:19] You sure they're not already pushed? [04:20] https://code.launchpad.net/~justin-zobel/budgie-desktop/trunk [04:20] Says This branch is empty [04:20] after bzr push [04:20] How many revs are in your local branch? [04:21] I'm a complete noob at this so you'll have to explain a little more if you can please. [04:21] revs meaning revisions of files? [04:21] Yeah. [04:22] Well theres about 20 files in the root directory [04:22] e.g., how many show up when you run log? [04:22] bzr log shows nothing :/ [04:23] Well, then push did just what it's supposed to :) [04:23] Ooooh [04:23] Ok so I did bzr add [04:23] push doesn't push files from your dir. It pushes commits from your branch. [04:24] hmm ok [04:25] ok so how do I get my files uploaded initially fullermd_ ? [04:29] phwoar, may have figured it out [04:29] had to set whoami, commit, push [04:29] Well, you'd have to commit 'em... [04:30] seems to be uploading something somewhere :D [04:32] yep got it. [04:32] Thank you! === TDJACR is now known as Guest34058