More Subversion branch progress
After some more work on the ‘svn’ plugin, I am now able to do proper lightweight checkouts (including file contents) and run ‘bzr log’ or ‘bzr info’ on the working tree:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | charis:~/bzr/svn% bzr checkout --lightweight \\ svn://svn.samba.org/smb-build/trunk smb-build charis:~/bzr/svn% bzr info smb-build Location: checkout root: /home/jelmer/bzr/svn/smb-build/ checkout of branch: svn://svn.samba.org/smb-build/trunk Format: control: Meta directory format 1 working tree: Working tree format 3 branch: Subversion Smart Server repository: Subversion Smart Server In the working tree: 16 unchanged 117 modified 0 added 0 removed 0 renamed 0 unknown 0 ignored 16 versioned subdirectories Branch history: 30 revisions 296 days old first revision: Fri 2005-06-24 11:24:47 +0000 latest revision: Sun 2006-03-19 01:39:05 +0000 charis:~/bzr/svn% bzr log smb-build ------------------------------------------------------------ revno: 30 committer: jelmer timestamp: Sun 2006-03-19 01:39:05 +0000 message: test double target ------------------------------------------------------------ revno: 29 committer: jelmer timestamp: Sat 2006-03-18 23:56:09 +0000 message: Test whether a variable in the include file is supported ------------------------------------------------------------ revno: 28 committer: jelmer timestamp: Sat 2006-03-18 23:10:09 +0000 message: Check :: ------------------------------------------------------------ revno: 27 committer: jelmer timestamp: Sat 2006-03-18 23:01:55 +0000 message: Test whether include in make works ------------------------------------------------------------ revno: 26 committer: tpot timestamp: Tue 2005-08-30 01:33:10 +0000 message: Fix the build. ------------------------------------------------------------ revno: 25 committer: tpot timestamp: Tue 2005-08-30 01:23:44 +0000 message: Break the build. ------------------------------------------------------------ [...] |