from small one page howto to huge articles all in one place
 

search text in:





Poll
What does your sytem tell when running "ulimit -u"?








poll results

Last additions:
using iotop to find disk usage hogs

using iotop to find disk usage hogs

words:

887

views:

187429

userrating:

average rating: 1.7 (102 votes) (1=very good 6=terrible)


May 25th. 2007:
Words

486

Views

250596

why adblockers are bad


Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

Workaround and fixes for the current Core Dump Handling vulnerability affected kernels

words:

161

views:

138060

userrating:

average rating: 1.4 (42 votes) (1=very good 6=terrible)


April, 26th. 2006:

Druckversion
You are here: manpages





Git::SVN::Editor

Section: User Contributed Perl Documentation (3)
Updated: 2016-11-29
Index Return to Main Contents
 

NAME

Git::SVN::Editor - commit driver for "git svn set-tree" and dcommit  

SYNOPSIS

        use Git::SVN::Editor;
        use Git::SVN::Ra;

        my $ra = Git::SVN::Ra->new($url);
        my %opts = (
                r => 19,
                log => "log message",
                ra => $ra,
                config => SVN::Core::config_get_config($svn_config_dir),
                tree_a => "$commit^",
                tree_b => "$commit",
                editor_cb => sub { print "Committed r$_[0]\n"; },
                mergeinfo => "/branches/foo:1-10",
                svn_path => "trunk"
        );
        Git::SVN::Editor->new(\%opts)->apply_diff or print "No changes\n";

        my $re = Git::SVN::Editor::glob2pat("trunk/*");
        if ($branchname =~ /$re/) {
                print "matched!\n";
        }

 

DESCRIPTION

This module is an implementation detail of the ``git svn'' command. Do not use it unless you are developing git-svn.

This module adapts the "SVN::Delta::Editor" object returned by "SVN::Delta::get_commit_editor" and drives it to convey the difference between two git tree objects to a remote Subversion repository.

The interface will change as git-svn evolves.  

DEPENDENCIES

Subversion perl bindings, the core Carp module, and git's Git helper module.

"Git::SVN::Editor" has not been tested using callers other than git-svn itself.  

SEE ALSO

SVN::Delta, Git::SVN::Fetcher.  

INCOMPATIBILITIES

None reported.  

BUGS

None.


 

Index

NAME
SYNOPSIS
DESCRIPTION
DEPENDENCIES
SEE ALSO
INCOMPATIBILITIES
BUGS





Support us on Content Nation
rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 29.9 ms