diff options
author | Michael G. Schwern <schwern@pobox.com> | 2012-07-26 17:26:06 -0700 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2012-07-27 22:36:19 +0000 |
commit | 3d9be15fc2b8c8198253ae1c4dcaa343b74c3b8d (patch) | |
tree | 6f8732038831d7c3dacc0efe4ea837cfc53a34e8 /perl/Git/SVN.pm | |
parent | 10c2aa5928b5309374bb4328f1c2849cb4ae65cc (diff) | |
download | git-3d9be15fc2b8c8198253ae1c4dcaa343b74c3b8d.tar.gz |
Extract Git::SVN::GlobSpec from git-svn.
Straight cut & paste. That's the last class.
* Make Git::SVN load it on its own, its the only thing that needs it.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'perl/Git/SVN.pm')
-rw-r--r-- | perl/Git/SVN.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm index 2e0d7f0373..b8b34744ea 100644 --- a/perl/Git/SVN.pm +++ b/perl/Git/SVN.pm @@ -207,6 +207,8 @@ sub read_all_remotes { . "must start with 'refs/'\n") unless $remote_ref =~ m{^refs/}; $local_ref = uri_decode($local_ref); + + require Git::SVN::GlobSpec; my $rs = { t => $t, remote => $remote, |