Add entry about repository formats.
[jelmer/subvertpy.git] / FAQ
1 ==================================================================
2 Bazaar is using a lot of memory accessing a Subversion repository!
3 ==================================================================
4 bzr-svn can use a lot of memory cloning big branches. The problem appears to be 
5 caused both by a memory leak in the python-subversion bindings or Subversion
6 (the svn_ra_get_log() function) and the memory overhead from Bazaar.
7
8 The easiest way to work around this problem is to Ctrl+C the branch operation 
9 and restart it.
10
11 More information can be found in the bug report at 
12 https://launchpad.net/bugs/54253
13
14 ==============================================================================
15 I am unable to access a repository that requires user/password authentication.
16 ==============================================================================
17 bzr-svn doesn't support prompting for passwords yet, but it can 
18 use passwords cached by Subversion. Subversion can be forced to cache 
19 the password by accessing the repository using the Subversion command-line 
20 client. For example, try running 'svn info <url>'.
21
22 ==============================================================================
23 Trying to branch into repository gives prints an error about incompatibility:
24 bzr: ERROR: Repository KnitRepository is not compatible with repository SvnRepository
25 ==============================================================================
26 bzr-svn requires a repository format that supports recording root file ids. To 
27 upgrade the repository, run: 
28
29 $ bzr upgrade --dirstate-with-subtree
30