1Git::SVN::Ra(3) User Contributed Perl Documentation Git::SVN::Ra(3)
2
3
4
6 Git::SVN::Ra - Subversion remote access functions for git-svn
7
9 use Git::SVN::Ra;
10
11 my $ra = Git::SVN::Ra->new($branchurl);
12 my ($dirents, $fetched_revnum, $props) =
13 $ra->get_dir('.', $SVN::Core::INVALID_REVNUM);
14
16 This is a wrapper around the SVN::Ra module for use by git-svn. It
17 fills in some default parameters (such as the authentication scheme),
18 smooths over incompatibilities between libsvn versions, adds caching,
19 and implements some functions specific to git-svn.
20
21 Do not use it unless you are developing git-svn. The interface will
22 change as git-svn evolves.
23
25 Subversion perl bindings, Git::SVN.
26
27 "Git::SVN::Ra" has not been tested using callers other than git-svn
28 itself.
29
31 SVN::Ra.
32
34 None reported.
35
37 None.
38
39
40
41perl v5.16.3 2013-06-10 Git::SVN::Ra(3)