2 # Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3 # License: GPL v2 or later
7 use vars qw
/ $AUTHOR $VERSION
8 $sha1 $sha1_short $_revision $_repository
9 $_q $_authors $_authors_prog %users/;
10 $AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
11 $VERSION = '@@GIT_VERSION@@';
16 use File
::Basename qw
/dirname basename/;
17 use File
::Path qw
/mkpath/;
20 use Getopt
::Long qw
/:config gnu_getopt no_ignore_case auto_abbrev/;
26 use Git
::SVN
::Fetcher
;
30 use Git
::SVN
::Migration
;
32 use Git
::SVN
::Utils
qw(fatal can_compress);
41 command_close_bidi_pipe
45 Memoize
::memoize
'Git::config';
46 Memoize
::memoize
'Git::config_bool';
50 # From which subdir have we been invoked?
51 my $cmd_dir_prefix = eval {
52 command_oneline
([qw
/rev-parse --show-prefix/], STDERR
=> 0)
55 my $git_dir_user_set = 1 if defined $ENV{GIT_DIR
};
56 $ENV{GIT_DIR
} ||= '.git';
57 $Git::SVN
::Ra
::_log_window_size
= 100;
59 if (! exists $ENV{SVN_SSH
} && exists $ENV{GIT_SSH
}) {
60 $ENV{SVN_SSH
} = $ENV{GIT_SSH
};
63 if (exists $ENV{SVN_SSH
} && $^O
eq 'msys') {
64 $ENV{SVN_SSH
} =~ s/\\/\\\\/g;
65 $ENV{SVN_SSH
} =~ s/(.*)/"$1"/;
68 $Git::SVN
::Log
::TZ
= $ENV{TZ
};
70 $| = 1; # unbuffer STDOUT
72 # All SVN commands do it. Otherwise we may die on SIGPIPE when the remote
73 # repository decides to close the connection which we expect to be kept alive.
74 $SIG{PIPE
} = 'IGNORE';
76 # Given a dot separated version number, "subtract" it from
77 # the SVN::Core::VERSION; non-negaitive return means the SVN::Core
78 # is at least at the version the caller asked for.
79 sub compare_svn_version
{
80 my (@ours) = split(/\./, $SVN::Core
::VERSION
);
81 my (@theirs) = split(/\./, $_[0]);
84 for ($i = 0; $i < @ours && $i < @theirs; $i++) {
85 $diff = $ours[$i] - $theirs[$i];
86 return $diff if ($diff);
88 return 1 if ($i < @ours);
89 return -1 if ($i < @theirs);
94 require SVN
::Core
; # use()-ing this causes segfaults for me... *shrug*
97 if (::compare_svn_version
('1.1.0') < 0) {
98 fatal
"Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
102 $sha1 = qr/[a-f\d]{40}/;
103 $sha1_short = qr/[a-f\d]{4,40}/;
104 my ($_stdin, $_help, $_edit,
105 $_message, $_file, $_branch_dest,
106 $_template, $_shared,
107 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
108 $_merge, $_strategy, $_preserve_merges, $_dry_run, $_local,
109 $_prefix, $_no_checkout, $_url, $_verbose,
110 $_commit_url, $_tag, $_merge_info, $_interactive);
112 # This is a refactoring artifact so Git::SVN can get at this git-svn switch.
113 sub opt_prefix
{ return $_prefix || '' }
115 $Git::SVN
::Fetcher
::_placeholder_filename
= ".gitignore";
117 my %remote_opts = ( 'username=s' => \
$Git::SVN
::Prompt
::_username
,
118 'config-dir=s' => \
$Git::SVN
::Ra
::config_dir
,
119 'no-auth-cache' => \
$Git::SVN
::Prompt
::_no_auth_cache
,
120 'ignore-paths=s' => \
$Git::SVN
::Fetcher
::_ignore_regex
,
121 'ignore-refs=s' => \
$Git::SVN
::Ra
::_ignore_refs_regex
);
122 my %fc_opts = ( 'follow-parent|follow!' => \
$Git::SVN
::_follow_parent
,
123 'authors-file|A=s' => \
$_authors,
124 'authors-prog=s' => \
$_authors_prog,
125 'repack:i' => \
$Git::SVN
::_repack
,
126 'noMetadata' => \
$Git::SVN
::_no_metadata
,
127 'useSvmProps' => \
$Git::SVN
::_use_svm_props
,
128 'useSvnsyncProps' => \
$Git::SVN
::_use_svnsync_props
,
129 'log-window-size=i' => \
$Git::SVN
::Ra
::_log_window_size
,
130 'no-checkout' => \
$_no_checkout,
132 'repack-flags|repack-args|repack-opts=s' =>
133 \
$Git::SVN
::_repack_flags
,
134 'use-log-author' => \
$Git::SVN
::_use_log_author
,
135 'add-author-from' => \
$Git::SVN
::_add_author_from
,
136 'localtime' => \
$Git::SVN
::_localtime
,
139 my ($_trunk, @_tags, @_branches, $_stdlayout);
141 my %init_opts = ( 'template=s' => \
$_template, 'shared:s' => \
$_shared,
142 'trunk|T=s' => \
$_trunk, 'tags|t=s@' => \
@_tags,
143 'branches|b=s@' => \
@_branches, 'prefix=s' => \
$_prefix,
144 'stdlayout|s' => \
$_stdlayout,
145 'minimize-url|m!' => \
$Git::SVN
::_minimize_url
,
146 'no-metadata' => sub { $icv{noMetadata
} = 1 },
147 'use-svm-props' => sub { $icv{useSvmProps
} = 1 },
148 'use-svnsync-props' => sub { $icv{useSvnsyncProps
} = 1 },
149 'rewrite-root=s' => sub { $icv{rewriteRoot
} = $_[1] },
150 'rewrite-uuid=s' => sub { $icv{rewriteUUID
} = $_[1] },
152 my %cmt_opts = ( 'edit|e' => \
$_edit,
153 'rmdir' => \
$Git::SVN
::Editor
::_rmdir
,
154 'find-copies-harder' => \
$Git::SVN
::Editor
::_find_copies_harder
,
155 'l=i' => \
$Git::SVN
::Editor
::_rename_limit
,
156 'copy-similarity|C=i'=> \
$Git::SVN
::Editor
::_cp_similarity
160 fetch
=> [ \
&cmd_fetch
, "Download new revisions from SVN",
161 { 'revision|r=s' => \
$_revision,
162 'fetch-all|all' => \
$_fetch_all,
163 'parent|p' => \
$_fetch_parent,
165 clone
=> [ \
&cmd_clone
, "Initialize and fetch revisions",
166 { 'revision|r=s' => \
$_revision,
167 'preserve-empty-dirs' =>
168 \
$Git::SVN
::Fetcher
::_preserve_empty_dirs
,
169 'placeholder-filename=s' =>
170 \
$Git::SVN
::Fetcher
::_placeholder_filename
,
171 %fc_opts, %init_opts } ],
172 init
=> [ \
&cmd_init
, "Initialize a repo for tracking" .
173 " (requires URL argument)",
175 'multi-init' => [ \
&cmd_multi_init
,
176 "Deprecated alias for ".
177 "'$0 init -T<trunk> -b<branches> -t<tags>'",
179 dcommit
=> [ \
&cmd_dcommit
,
180 'Commit several diffs to merge with upstream',
181 { 'merge|m|M' => \
$_merge,
182 'strategy|s=s' => \
$_strategy,
183 'verbose|v' => \
$_verbose,
184 'dry-run|n' => \
$_dry_run,
185 'fetch-all|all' => \
$_fetch_all,
186 'commit-url=s' => \
$_commit_url,
187 'revision|r=i' => \
$_revision,
188 'no-rebase' => \
$_no_rebase,
189 'mergeinfo=s' => \
$_merge_info,
190 'interactive|i' => \
$_interactive,
191 %cmt_opts, %fc_opts } ],
192 branch
=> [ \
&cmd_branch
,
193 'Create a branch in the SVN repository',
194 { 'message|m=s' => \
$_message,
195 'destination|d=s' => \
$_branch_dest,
196 'dry-run|n' => \
$_dry_run,
198 'username=s' => \
$Git::SVN
::Prompt
::_username
,
199 'commit-url=s' => \
$_commit_url } ],
200 tag
=> [ sub { $_tag = 1; cmd_branch
(@_) },
201 'Create a tag in the SVN repository',
202 { 'message|m=s' => \
$_message,
203 'destination|d=s' => \
$_branch_dest,
204 'dry-run|n' => \
$_dry_run,
205 'username=s' => \
$Git::SVN
::Prompt
::_username
,
206 'commit-url=s' => \
$_commit_url } ],
207 'set-tree' => [ \
&cmd_set_tree
,
208 "Set an SVN repository to a git tree-ish",
209 { 'stdin' => \
$_stdin, %cmt_opts, %fc_opts, } ],
210 'create-ignore' => [ \
&cmd_create_ignore
,
211 'Create a .gitignore per svn:ignore',
212 { 'revision|r=i' => \
$_revision
214 'mkdirs' => [ \
&cmd_mkdirs
,
215 "recreate empty directories after a checkout",
216 { 'revision|r=i' => \
$_revision } ],
217 'propget' => [ \
&cmd_propget
,
218 'Print the value of a property on a file or directory',
219 { 'revision|r=i' => \
$_revision } ],
220 'proplist' => [ \
&cmd_proplist
,
221 'List all properties of a file or directory',
222 { 'revision|r=i' => \
$_revision } ],
223 'show-ignore' => [ \
&cmd_show_ignore
, "Show svn:ignore listings",
224 { 'revision|r=i' => \
$_revision
226 'show-externals' => [ \
&cmd_show_externals
, "Show svn:externals listings",
227 { 'revision|r=i' => \
$_revision
229 'multi-fetch' => [ \
&cmd_multi_fetch
,
230 "Deprecated alias for $0 fetch --all",
231 { 'revision|r=s' => \
$_revision, %fc_opts } ],
232 'migrate' => [ sub { },
233 # no-op, we automatically run this anyways,
234 'Migrate configuration/metadata/layout from
235 previous versions of git-svn',
236 { 'minimize' => \
$Git::SVN
::Migration
::_minimize
,
238 'log' => [ \
&Git
::SVN
::Log
::cmd_show_log
, 'Show commit logs',
239 { 'limit=i' => \
$Git::SVN
::Log
::limit
,
240 'revision|r=s' => \
$_revision,
241 'verbose|v' => \
$Git::SVN
::Log
::verbose
,
242 'incremental' => \
$Git::SVN
::Log
::incremental
,
243 'oneline' => \
$Git::SVN
::Log
::oneline
,
244 'show-commit' => \
$Git::SVN
::Log
::show_commit
,
245 'non-recursive' => \
$Git::SVN
::Log
::non_recursive
,
246 'authors-file|A=s' => \
$_authors,
247 'color' => \
$Git::SVN
::Log
::color
,
248 'pager=s' => \
$Git::SVN
::Log
::pager
250 'find-rev' => [ \
&cmd_find_rev
,
251 "Translate between SVN revision numbers and tree-ish",
253 'rebase' => [ \
&cmd_rebase
, "Fetch and rebase your working directory",
254 { 'merge|m|M' => \
$_merge,
255 'verbose|v' => \
$_verbose,
256 'strategy|s=s' => \
$_strategy,
257 'local|l' => \
$_local,
258 'fetch-all|all' => \
$_fetch_all,
259 'dry-run|n' => \
$_dry_run,
260 'preserve-merges|p' => \
$_preserve_merges,
262 'commit-diff' => [ \
&cmd_commit_diff
,
263 'Commit a diff between two trees',
264 { 'message|m=s' => \
$_message,
265 'file|F=s' => \
$_file,
266 'revision|r=s' => \
$_revision,
268 'info' => [ \
&cmd_info
,
269 "Show info about the latest SVN revision
270 on the current branch",
271 { 'url' => \
$_url, } ],
272 'blame' => [ \
&Git
::SVN
::Log
::cmd_blame
,
273 "Show what revision and author last modified each line of a file",
274 { 'git-format' => \
$Git::SVN
::Log
::_git_format
} ],
275 'reset' => [ \
&cmd_reset
,
276 "Undo fetches back to the specified SVN revision",
277 { 'revision|r=s' => \
$_revision,
278 'parent|p' => \
$_fetch_parent } ],
280 "Compress unhandled.log files in .git/svn and remove " .
281 "index files in .git/svn",
288 my ($class, $reason) = @_;
289 return bless \
$reason, shift;
293 die "Cannot use readline on FakeTerm: $$self";
298 $ENV{"GIT_SVN_NOTTY"}
299 ? new Term
::ReadLine
'git-svn', \
*STDIN
, \
*STDOUT
300 : new Term
::ReadLine
'git-svn';
303 $term = new FakeTerm
"$@: going non-interactive";
307 for (my $i = 0; $i < @ARGV; $i++) {
308 if (defined $cmd{$ARGV[$i]}) {
312 } elsif ($ARGV[$i] eq 'help') {
318 # make sure we're always running at the top-level working directory
319 unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
320 unless (-d
$ENV{GIT_DIR
}) {
321 if ($git_dir_user_set) {
322 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
323 "but it is not a directory\n";
325 my $git_dir = delete $ENV{GIT_DIR
};
328 $cdup = command_oneline
(qw
/rev-parse --show-cdup/);
329 $git_dir = '.' unless ($cdup);
330 chomp $cdup if ($cdup);
331 $cdup = "." unless ($cdup && length $cdup);
332 } "Already at toplevel, but $git_dir not found\n";
333 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
334 unless (-d
$git_dir) {
335 die "$git_dir still not found after going to ",
338 $ENV{GIT_DIR
} = $git_dir;
340 $_repository = Git
->repository(Repository
=> $ENV{GIT_DIR
});
343 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
345 read_git_config
(\
%opts);
346 if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
347 Getopt
::Long
::Configure
('pass_through');
349 my $rv = GetOptions
(%opts, 'h|H' => \
$_help, 'version|V' => \
$_version,
350 'minimize-connections' => \
$Git::SVN
::Migration
::_minimize
,
351 'id|i=s' => \
$Git::SVN
::default_ref_id
,
352 'svn-remote|remote|R=s' => sub {
353 $Git::SVN
::no_reuse_existing
= 1;
354 $Git::SVN
::default_repo_id
= $_[1] });
355 exit 1 if (!$rv && $cmd && $cmd ne 'log');
358 version
() if $_version;
359 usage
(1) unless defined $cmd;
360 load_authors
() if $_authors;
361 if (defined $_authors_prog) {
362 $_authors_prog = "'" . File
::Spec
->rel2abs($_authors_prog) . "'";
365 unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
366 Git
::SVN
::Migration
::migration_check
();
368 Git
::SVN
::init_vars
();
370 Git
::SVN
::verify_remotes_sanity
();
371 $cmd{$cmd}->[0]->(@ARGV);
372 post_fetch_checkout
();
377 ####################### primary functions ######################
379 my $exit = shift || 0;
380 my $fd = $exit ? \
*STDERR
: \
*STDOUT
;
382 git
-svn
- bidirectional operations between a single Subversion tree
and git
383 Usage
: git svn
<command
> [options
] [arguments
]\n
385 print $fd "Available commands:\n" unless $cmd;
387 foreach (sort keys %cmd) {
388 next if $cmd && $cmd ne $_;
389 next if /^multi-/; # don't show deprecated commands
390 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
391 foreach (sort keys %{$cmd{$_}->[2]}) {
392 # mixed-case options are for .git/config only
393 next if /[A-Z]/ && /^[a-z]+$/i;
394 # prints out arguments as they should be passed:
395 my $x = s
#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
396 print $fd ' ' x
21, join(', ', map { length $_ > 1 ?
398 split /\|/,$_)," $x\n";
402 \nGIT_SVN_ID may be set
in the environment
or via the
--id
/-i switch to an
403 arbitrary identifier
if you
're tracking multiple SVN branches/repositories in
404 one git repository and want to keep them separate. See git-svn(1) for more
412 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
417 my ($prompt, %arg) = @_;
418 my $valid_re = $arg{valid_re};
419 my $default = $arg{default};
423 if ( !( defined($term->IN)
424 && defined( fileno($term->IN) )
425 && defined( $term->OUT )
426 && defined( fileno($term->OUT) ) ) ){
427 return defined($default) ? $default : undef;
431 $resp = $term->readline($prompt);
432 if (!defined $resp) { # EOF
434 return defined $default ? $default : undef;
436 if ($resp eq '' and defined $default) {
439 if (!defined $valid_re or $resp =~ /$valid_re/) {
447 unless (-d $ENV{GIT_DIR}) {
448 my @init_db = ('init
');
449 push @init_db, "--template=$_template" if defined $_template;
450 if (defined $_shared) {
451 if ($_shared =~ /[a-z]/) {
452 push @init_db, "--shared=$_shared";
454 push @init_db, "--shared";
457 command_noisy(@init_db);
458 $_repository = Git->repository(Repository => ".git");
461 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
462 foreach my $i (keys %icv) {
463 die "'$set' and '$i' cannot both be set\n" if $set;
464 next unless defined $icv{$i};
465 command_noisy('config
', "$pfx.$i", $icv{$i});
468 my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex;
469 command_noisy('config
', "$pfx.ignore-paths", $$ignore_paths_regex)
470 if defined $$ignore_paths_regex;
471 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
472 command_noisy('config
', "$pfx.ignore-refs", $$ignore_refs_regex)
473 if defined $$ignore_refs_regex;
475 if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) {
476 my $fname = \$Git::SVN::Fetcher::_placeholder_filename;
477 command_noisy('config
', "$pfx.preserve-empty-dirs", 'true
');
478 command_noisy('config
', "$pfx.placeholder-filename", $$fname);
483 my $repo_path = shift or return;
484 mkpath([$repo_path]) unless -d $repo_path;
485 chdir $repo_path or die "Couldn't
chdir to
$repo_path: $!\n";
486 $ENV{GIT_DIR} = '.git';
487 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
491 my ($url, $path) = @_;
492 if (!defined $path &&
493 (defined $_trunk || @_branches || @_tags ||
494 defined $_stdlayout) &&
495 $url !~ m#^[a-z\+]+://#) {
498 $path = basename($url) if !defined $path || !length $path;
499 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
500 cmd_init($url, $path);
501 command_oneline('config', 'svn.authorsfile', $authors_absolute)
503 Git::SVN::fetch_all($Git::SVN::default_repo_id);
507 if (defined $_stdlayout) {
508 $_trunk = 'trunk' if (!defined $_trunk);
509 @_tags = 'tags' if (! @_tags);
510 @_branches = 'branches' if (! @_branches);
512 if (defined $_trunk || @_branches || @_tags) {
513 return cmd_multi_init(@_);
515 my $url = shift or die "SVN repository location required
",
516 "as a command
-line argument
\n";
517 $url = canonicalize_url($url);
521 if ($Git::SVN::_minimize_url eq 'unset') {
522 $Git::SVN::_minimize_url = 0;
525 Git::SVN->init($url);
529 if (grep /^\d+=./, @_) {
530 die "'<rev>=<commit>' fetch arguments are
",
531 "no longer supported
.\n";
535 die "Usage
: $0 fetch
[--all
] [--parent
] [svn
-remote
]\n";
537 $Git::SVN::no_reuse_existing = undef;
538 if ($_fetch_parent) {
539 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
541 die "Unable to determine upstream SVN information from
",
542 "working tree history
\n";
544 # just fetch, don't checkout.
545 $_no_checkout = 'true';
546 $_fetch_all ? $gs->fetch_all : $gs->fetch;
547 } elsif ($_fetch_all) {
550 $remote ||= $Git::SVN::default_repo_id;
551 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
557 if ($_stdin || !@commits) {
558 print "Reading from stdin
...\n";
561 if (/\b($sha1_short)\b/o) {
562 unshift @commits, $1;
567 foreach my $c (@commits) {
568 my @tmp = command('rev-parse',$c);
569 if (scalar @tmp == 1) {
571 } elsif (scalar @tmp > 1) {
572 push @revs, reverse(command('rev-list',@tmp));
574 fatal "Failed to rev
-parse
$c";
577 my $gs = Git::SVN->new;
578 my ($r_last, $cmt_last) = $gs->last_rev_commit;
580 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
581 fatal "There are new revisions that were fetched
",
582 "and need to be merged
(or acknowledged
) ",
583 "before committing
.\nlast rev
: $r_last\n",
584 " current
: $gs->{last_rev
}";
586 $gs->set_tree($_) foreach @revs;
587 print "Done committing
",scalar @revs," revisions to SVN
\n";
591 sub split_merge_info_range {
593 if ($range =~ /(\d+)-(\d+)/) {
594 return (int($1), int($2));
596 return (int($range), int($range));
604 my @arr = split(/,/, $in);
605 for my $element (@arr) {
606 my ($start, $end) = split_merge_info_range($element);
610 my @sorted = @arr [ sort {
611 $fnums[$a] <=> $fnums[$b]
617 for my $element (@sorted) {
618 my ($start, $end) = split_merge_info_range($element);
625 if ($start <= $last+1) {
631 if ($first == $last) {
632 push @return, "$first";
634 push @return, "$first-$last";
641 if ($first == $last) {
642 push @return, "$first";
644 push @return, "$first-$last";
648 return join(',', @return);
651 sub merge_revs_into_hash {
652 my ($hash, $minfo) = @_;
653 my @lines = split(' ', $minfo);
655 for my $line (@lines) {
656 my ($branchpath, $revs) = split(/:/, $line);
658 if (exists($hash->{$branchpath})) {
659 # Merge the two revision sets
660 my $combined = "$hash->{$branchpath},$revs";
661 $hash->{$branchpath} = combine_ranges($combined);
663 # Just do range combining for consolidation
664 $hash->{$branchpath} = combine_ranges($revs);
669 sub merge_merge_info {
670 my ($mergeinfo_one, $mergeinfo_two) = @_;
671 my %result_hash = ();
673 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
674 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
677 # Sort below is for consistency's sake
678 for my $branchname (sort keys(%result_hash)) {
679 my $revlist = $result_hash{$branchname};
680 $result .= "$branchname:$revlist\n"
685 sub populate_merge_info {
686 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
689 read_commit_parents(\%parentshash, $d);
690 my @parents = @{$parentshash{$d}};
693 my $all_parents_ok = 1;
694 my $aggregate_mergeinfo = '';
695 my $rooturl = $gs->repos_root;
697 if (defined($rewritten_parent)) {
698 # Replace first parent with newly-rewritten version
700 unshift @parents, $rewritten_parent;
703 foreach my $parent (@parents) {
704 my ($branchurl, $svnrev, $paruuid) =
705 cmt_metadata($parent);
707 unless (defined($svnrev)) {
708 # Should have been caught be preflight check
709 fatal "merge commit
$d has ancestor
$parent, but that change
"
710 ."does
not have git
-svn metadata
!";
712 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
713 fatal "commit
$parent git
-svn metadata changed mid
-run
!";
717 my $ra = Git::SVN::Ra->new($branchurl);
718 my (undef, undef, $props) =
719 $ra->get_dir(canonicalize_path("."), $svnrev);
720 my $par_mergeinfo = $props->{'svn:mergeinfo'};
721 unless (defined $par_mergeinfo) {
724 # Merge previous mergeinfo values
725 $aggregate_mergeinfo =
726 merge_merge_info($aggregate_mergeinfo,
729 next if $parent eq $parents[0]; # Skip first parent
730 # Add new changes being placed in tree by merge
731 my @cmd = (qw/rev-list --reverse/,
733 foreach my $par (@parents) {
734 unless ($par eq $parent) {
739 my ($revlist, $ctx) = command_output_pipe(@cmd);
743 my (undef, $csvnrev, undef) =
745 unless (defined $csvnrev) {
746 # A child is missing SVN annotations...
747 # this might be OK, or might not be.
748 warn "W
:child
$irev is merged into revision
"
749 ."$d but does
not have git
-svn metadata
. "
750 ."This means git
-svn cannot determine the
"
751 ."svn revision numbers to place into the
"
752 ."svn
:mergeinfo property
. You must ensure
"
753 ."a branch is entirely committed to
"
754 ."SVN before merging it
in order
for "
755 ."svn
:mergeinfo population to function
"
758 push @revsin, $csvnrev;
760 command_close_pipe($revlist, $ctx);
762 last unless $all_parents_ok;
764 # We now have a list of all SVN revnos which are
765 # merged by this particular parent. Integrate them.
766 next if $#revsin == -1;
767 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
768 $aggregate_mergeinfo =
769 merge_merge_info($aggregate_mergeinfo,
772 if ($all_parents_ok and $aggregate_mergeinfo) {
773 return $aggregate_mergeinfo;
782 command_noisy(qw/update-index --refresh/);
783 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
784 'Cannot dcommit with a dirty index. Commit your changes first, '
785 . "or stash them with
`git stash'.\n";
789 if ($head ne 'HEAD') {
791 command_oneline([qw/symbolic-ref -q HEAD/])
794 $old_head =~ s{^refs/heads/}{};
796 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
798 command(['checkout', $head], STDERR => 0);
802 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
804 die "Unable to determine upstream SVN information from ",
805 "$head history.\nPerhaps the repository is empty.";
808 if (defined $_commit_url) {
811 $url = eval { command_oneline('config', '--get',
812 "svn-remote.$gs->{repo_id}.commiturl") };
814 $url = $gs->full_pushurl
818 my $last_rev = $_revision if defined $_revision;
820 print "Committing to $url ...\n";
822 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
823 if ($_no_rebase && scalar(@$linear_refs) > 1) {
824 warn "Attempting to commit more than one change while ",
825 "--no-rebase is enabled.\n",
826 "If these changes depend on each other, re-running ",
827 "without --no-rebase may be required."
830 if (defined $_interactive){
831 my $ask_default = "y";
832 foreach my $d (@$linear_refs){
833 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
837 command_close_pipe
($fh, $ctx);
838 $_ = ask
("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
839 valid_re
=> qr/^(?:yes|y|no|n|quit|q|all|a)/i,
840 default => $ask_default);
841 die "Commit this patch reply required" unless defined $_;
850 my $expect_url = $url;
852 my $push_merge_info = eval {
853 command_oneline
(qw
/config --get svn.pushmergeinfo/)
855 if (not defined($push_merge_info)
856 or $push_merge_info eq "false"
857 or $push_merge_info eq "no"
858 or $push_merge_info eq "never") {
859 $push_merge_info = 0;
862 unless (defined($_merge_info) || ! $push_merge_info) {
863 # Preflight check of changes to ensure no issues with mergeinfo
864 # This includes check for uncommitted-to-SVN parents
865 # (other than the first parent, which we will handle),
866 # information from different SVN repos, and paths
867 # which are not underneath this repository root.
868 my $rooturl = $gs->repos_root;
869 foreach my $d (@
$linear_refs) {
871 read_commit_parents
(\
%parentshash, $d);
872 my @realparents = @
{$parentshash{$d}};
873 if ($#realparents > 0) {
875 shift @realparents; # Remove/ignore first parent
876 foreach my $parent (@realparents) {
877 my ($branchurl, $svnrev, $paruuid) = cmt_metadata
($parent);
878 unless (defined $paruuid) {
879 # A parent is missing SVN annotations...
880 # abort the whole operation.
881 fatal
"$parent is merged into revision $d, "
882 ."but does not have git-svn metadata. "
883 ."Either dcommit the branch or use a "
884 ."local cherry-pick, FF merge, or rebase "
885 ."instead of an explicit merge commit.";
888 unless ($paruuid eq $uuid) {
889 # Parent has SVN metadata from different repository
890 fatal
"merge parent $parent for change $d has "
891 ."git-svn uuid $paruuid, while current change "
895 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
896 # This branch is very strange indeed.
897 fatal
"merge parent $parent for $d is on branch "
898 ."$branchurl, which is not under the "
899 ."git-svn root $rooturl!";
906 my $rewritten_parent;
907 Git
::SVN
::remove_username
($expect_url);
908 if (defined($_merge_info)) {
909 $_merge_info =~ tr{ }{\n};
912 my $d = shift @
$linear_refs or last;
913 unless (defined $last_rev) {
914 (undef, $last_rev, undef) = cmt_metadata
("$d~1");
915 unless (defined $last_rev) {
916 fatal
"Unable to extract revision information ",
921 print "diff-tree $d~1 $d\n";
925 unless (defined($_merge_info) || ! $push_merge_info) {
926 $_merge_info = populate_merge_info
($d, $gs,
932 my %ed_opts = ( r
=> $last_rev,
933 log => get_commit_entry
($d)->{log},
934 ra
=> Git
::SVN
::Ra
->new($url),
935 config
=> SVN
::Core
::config_get_config
(
936 $Git::SVN
::Ra
::config_dir
941 print "Committed r$_[0]\n";
944 mergeinfo
=> $_merge_info,
946 if (!Git
::SVN
::Editor
->new(\
%ed_opts)->apply_diff) {
947 print "No changes\n$d~1 == $d\n";
948 } elsif ($parents->{$d} && @
{$parents->{$d}}) {
949 $gs->{inject_parents_dcommit
}->{$cmt_rev} =
952 $_fetch_all ?
$gs->fetch_all : $gs->fetch;
953 $last_rev = $cmt_rev;
956 # we always want to rebase against the current HEAD,
957 # not any head that was passed to us
958 my @diff = command
('diff-tree', $d,
962 @finish = rebase_cmd
();
963 print STDERR
"W: $d and ", $gs->refname,
964 " differ, using @finish:\n",
965 join("\n", @diff), "\n";
967 print "No changes between current HEAD and ",
969 "\nResetting to the latest ",
971 @finish = qw
/reset --mixed/;
973 command_noisy
(@finish, $gs->refname);
975 $rewritten_parent = command_oneline
(qw
/rev-parse HEAD/);
979 my ($url_, $rev_, $uuid_, $gs_) =
980 working_head_info
('HEAD', \
@refs);
981 my ($linear_refs_, $parents_) =
982 linearize_history
($gs_, \
@refs);
983 if (scalar(@
$linear_refs) !=
984 scalar(@
$linear_refs_)) {
985 fatal
"# of revisions changed ",
987 join("\n", @
$linear_refs),
989 join("\n", @
$linear_refs_), "\n",
990 'If you are attempting to commit ',
991 "merges, try running:\n\t",
992 'git rebase --interactive',
993 '--preserve-merges ',
995 "\nBefore dcommitting";
997 if ($url_ ne $expect_url) {
998 if ($url_ eq $gs->metadata_url) {
1000 "Accepting rewritten URL:",
1004 "URL mismatch after rebase:",
1005 " $url_ != $expect_url";
1008 if ($uuid_ ne $uuid) {
1009 fatal
"uuid mismatch after rebase: ",
1014 for ($i = 0; $i < scalar @
$linear_refs; $i++) {
1015 my $new = $linear_refs_->[$i] or next;
1017 $parents->{$linear_refs->[$i]};
1027 my $new_head = command_oneline
(qw
/rev-parse HEAD/);
1028 my $new_is_symbolic = eval {
1029 command_oneline
(qw
/symbolic-ref -q HEAD/);
1031 if ($new_is_symbolic) {
1032 print "dcommitted the branch ", $head, "\n";
1034 print "dcommitted on a detached HEAD because you gave ",
1035 "a revision argument.\n",
1036 "The rewritten commit is: ", $new_head, "\n";
1038 command
(['checkout', $old_head], STDERR
=> 0);
1041 unlink $gs->{index};
1045 my ($branch_name, $head) = @_;
1047 unless (defined $branch_name && length $branch_name) {
1048 die(($_tag ?
"tag" : "branch") . " name required\n");
1052 my (undef, $rev, undef, $gs) = working_head_info
($head);
1053 my $src = $gs->full_pushurl;
1055 my $remote = Git
::SVN
::read_all_remotes
()->{$gs->{repo_id
}};
1056 my $allglobs = $remote->{ $_tag ?
'tags' : 'branches' };
1058 if ($#{$allglobs} == 0) {
1059 $glob = $allglobs->[0];
1061 unless(defined $_branch_dest) {
1063 $_tag ?
"tag" : "branch",
1064 " paths defined for Subversion repository.\n",
1065 "You must specify where you want to create the ",
1066 $_tag ?
"tag" : "branch",
1067 " with the --destination argument.\n";
1069 foreach my $g (@
{$allglobs}) {
1070 my $re = Git
::SVN
::Editor
::glob2pat
($g->{path
}->{left
});
1071 if ($_branch_dest =~ /$re/) {
1076 unless (defined $glob) {
1077 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1078 foreach my $g (@
{$allglobs}) {
1079 $g->{path
}->{left
} =~ /$dest_re/ or next;
1080 if (defined $glob) {
1081 die "Ambiguous destination: ",
1082 $_branch_dest, "\nmatches both '",
1083 $glob->{path
}->{left
}, "' and '",
1084 $g->{path
}->{left
}, "'\n";
1088 unless (defined $glob) {
1090 $_tag ?
"tag" : "branch",
1091 " destination $_branch_dest\n";
1095 my ($lft, $rgt) = @
{ $glob->{path
} }{qw
/left right/};
1097 if (defined $_commit_url) {
1098 $url = $_commit_url;
1100 $url = eval { command_oneline
('config', '--get',
1101 "svn-remote.$gs->{repo_id}.commiturl") };
1103 $url = $remote->{pushurl
} || $remote->{url
};
1106 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
1108 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1109 $src=~s/^http:/https:/;
1114 my $ctx = SVN
::Client
->new(
1115 auth
=> Git
::SVN
::Ra
::_auth_providers
(),
1117 ${ $_[0] } = defined $_message
1119 : 'Create ' . ($_tag ?
'tag ' : 'branch ' )
1125 $ctx->ls($dst, 'HEAD', 0);
1126 } and die "branch ${branch_name} already exists\n";
1128 print "Copying ${src} at r${rev} to ${dst}...\n";
1129 $ctx->copy($src, $rev, $dst)
1136 my $revision_or_hash = shift or die "SVN or git revision required ",
1137 "as a command-line argument\n";
1139 if ($revision_or_hash =~ /^r\d+$/) {
1143 my (undef, undef, $uuid, $gs) = working_head_info
($head, \
@refs);
1145 die "Unable to determine upstream SVN information from ",
1148 my $desired_revision = substr($revision_or_hash, 1);
1149 $result = $gs->rev_map_get($desired_revision, $uuid);
1151 my (undef, $rev, undef) = cmt_metadata
($revision_or_hash);
1154 print "$result\n" if $result;
1157 sub auto_create_empty_directories
{
1159 my $var = eval { command_oneline
('config', '--get', '--bool',
1160 "svn-remote.$gs->{repo_id}.automkdirs") };
1161 # By default, create empty directories by consulting the unhandled log,
1162 # but allow setting it to 'false' to skip it.
1163 return !($var && $var eq 'false');
1167 command_noisy
(qw
/update-index --refresh/);
1168 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1170 die "Unable to determine upstream SVN information from ",
1171 "working tree history\n";
1174 print "Remote Branch: " . $gs->refname . "\n";
1175 print "SVN URL: " . $url . "\n";
1178 if (command
(qw
/diff-index HEAD --/)) {
1179 print STDERR
"Cannot rebase with uncommited changes:\n";
1180 command_noisy
('status');
1184 # rebase will checkout for us, so no need to do it explicitly
1185 $_no_checkout = 'true';
1186 $_fetch_all ?
$gs->fetch_all : $gs->fetch;
1188 command_noisy
(rebase_cmd
(), $gs->refname);
1189 if (auto_create_empty_directories
($gs)) {
1194 sub cmd_show_ignore
{
1195 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1196 $gs ||= Git
::SVN
->new;
1197 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1198 $gs->prop_walk($gs->{path
}, $r, sub {
1199 my ($gs, $path, $props) = @_;
1200 print STDOUT
"\n# $path\n";
1201 my $s = $props->{'svn:ignore'} or return;
1202 $s =~ s/[\r\n]+/\n/g;
1206 print STDOUT
"$s\n";
1210 sub cmd_show_externals
{
1211 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1212 $gs ||= Git
::SVN
->new;
1213 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1214 $gs->prop_walk($gs->{path
}, $r, sub {
1215 my ($gs, $path, $props) = @_;
1216 print STDOUT
"\n# $path\n";
1217 my $s = $props->{'svn:externals'} or return;
1218 $s =~ s/[\r\n]+/\n/g;
1221 print STDOUT
"$s\n";
1225 sub cmd_create_ignore
{
1226 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1227 $gs ||= Git
::SVN
->new;
1228 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1229 $gs->prop_walk($gs->{path
}, $r, sub {
1230 my ($gs, $path, $props) = @_;
1231 # $path is of the form /path/to/dir/
1232 $path = '.' . $path;
1233 # SVN can have attributes on empty directories,
1234 # which git won't track
1235 mkpath
([$path]) unless -d
$path;
1236 my $ignore = $path . '.gitignore';
1237 my $s = $props->{'svn:ignore'} or return;
1238 open(GITIGNORE
, '>', $ignore)
1239 or fatal
("Failed to open `$ignore' for writing: $!");
1240 $s =~ s/[\r\n]+/\n/g;
1243 # Prefix all patterns so that the ignore doesn't apply
1244 # to sub-directories.
1246 print GITIGNORE
"$s\n";
1248 or fatal
("Failed to close `$ignore': $!");
1249 command_noisy
('add', '-f', $ignore);
1254 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1255 $gs ||= Git
::SVN
->new;
1256 $gs->mkemptydirs($_revision);
1259 sub canonicalize_path
{
1261 my $dot_slash_added = 0;
1262 if (substr($path, 0, 1) ne "/") {
1263 $path = "./" . $path;
1264 $dot_slash_added = 1;
1266 # File::Spec->canonpath doesn't collapse x/../y into y (for a
1267 # good reason), so let's do this manually.
1269 $path =~ s
#/\.(?:/|$)#/#g;
1270 $path =~ s
#/[^/]+/\.\.##g;
1272 $path =~ s
#^\./## if $dot_slash_added;
1278 sub canonicalize_url
{
1280 $url =~ s
#^([^:]+://[^/]*/)(.*)$#$1 . canonicalize_path($2)#e;
1284 # get_svnprops(PATH)
1285 # ------------------
1286 # Helper for cmd_propget and cmd_proplist below.
1289 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1290 $gs ||= Git
::SVN
->new;
1292 # prefix THE PATH by the sub-directory from which the user
1294 $path = $cmd_dir_prefix . $path;
1295 fatal
("No such file or directory: $path") unless -e
$path;
1296 my $is_dir = -d
$path ?
1 : 0;
1297 $path = $gs->{path
} . '/' . $path;
1299 # canonicalize the path (otherwise libsvn will abort or fail to
1301 $path = canonicalize_path
($path);
1303 my $r = (defined $_revision ?
$_revision : $gs->ra->get_latest_revnum);
1306 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1309 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1314 # cmd_propget (PROP, PATH)
1315 # ------------------------
1316 # Print the SVN property PROP for PATH.
1318 my ($prop, $path) = @_;
1319 $path = '.' if not defined $path;
1320 usage
(1) if not defined $prop;
1321 my $props = get_svnprops
($path);
1322 if (not defined $props->{$prop}) {
1323 fatal
("`$path' does not have a `$prop' SVN property.");
1325 print $props->{$prop} . "\n";
1328 # cmd_proplist (PATH)
1329 # -------------------
1330 # Print the list of SVN properties for PATH.
1333 $path = '.' if not defined $path;
1334 my $props = get_svnprops
($path);
1335 print "Properties on '$path':\n";
1336 foreach (sort keys %{$props}) {
1341 sub cmd_multi_init
{
1343 unless (defined $_trunk || @_branches || @_tags) {
1347 $_prefix = '' unless defined $_prefix;
1349 $url = canonicalize_url
($url);
1353 if (defined $_trunk) {
1355 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
1356 # try both old-style and new-style lookups:
1357 my $gs_trunk = eval { Git
::SVN
->new($trunk_ref) };
1358 unless ($gs_trunk) {
1359 my ($trunk_url, $trunk_path) =
1360 complete_svn_url
($url, $_trunk);
1361 $gs_trunk = Git
::SVN
->init($trunk_url, $trunk_path,
1365 return unless @_branches || @_tags;
1366 my $ra = $url ? Git
::SVN
::Ra
->new($url) : undef;
1367 foreach my $path (@_branches) {
1368 complete_url_ls_init
($ra, $path, '--branches/-b', $_prefix);
1370 foreach my $path (@_tags) {
1371 complete_url_ls_init
($ra, $path, '--tags/-t', $_prefix.'tags/');
1375 sub cmd_multi_fetch
{
1376 $Git::SVN
::no_reuse_existing
= undef;
1377 my $remotes = Git
::SVN
::read_all_remotes
();
1378 foreach my $repo_id (sort keys %$remotes) {
1379 if ($remotes->{$repo_id}->{url
}) {
1380 Git
::SVN
::fetch_all
($repo_id, $remotes);
1385 # this command is special because it requires no metadata
1386 sub cmd_commit_diff
{
1387 my ($ta, $tb, $url) = @_;
1388 my $usage = "Usage: $0 commit-diff -r<revision> ".
1389 "<tree-ish> <tree-ish> [<URL>]";
1390 fatal
($usage) if (!defined $ta || !defined $tb);
1392 if (!defined $url) {
1393 my $gs = eval { Git
::SVN
->new };
1395 fatal
("Needed URL or usable git-svn --id in ",
1396 "the command-line\n", $usage);
1399 $svn_path = $gs->{path
};
1401 unless (defined $_revision) {
1402 fatal
("-r|--revision is a required argument\n", $usage);
1404 if (defined $_message && defined $_file) {
1405 fatal
("Both --message/-m and --file/-F specified ",
1406 "for the commit message.\n",
1407 "I have no idea what you mean");
1409 if (defined $_file) {
1410 $_message = file_to_s
($_file);
1412 $_message ||= get_commit_entry
($tb)->{log};
1414 my $ra ||= Git
::SVN
::Ra
->new($url);
1417 $r = $ra->get_latest_revnum;
1418 } elsif ($r !~ /^\d+$/) {
1419 die "revision argument: $r not understood by git-svn\n";
1421 my %ed_opts = ( r
=> $r,
1426 editor_cb
=> sub { print "Committed r$_[0]\n" },
1427 svn_path
=> $svn_path );
1428 if (!Git
::SVN
::Editor
->new(\
%ed_opts)->apply_diff) {
1429 print "No changes\n$ta == $tb\n";
1433 sub escape_uri_only
{
1436 foreach (split m{/}, $uri) {
1437 s/([^~\w.%+-]|%(?![a-fA-F0-9]{2}))/sprintf("%%%02X",ord($1))/eg;
1445 if ($url =~ m
#^([^:]+)://([^/]*)(.*)$#) {
1446 my ($scheme, $domain, $uri) = ($1, $2, escape_uri_only
($3));
1447 $url = "$scheme://$domain$uri";
1453 my $path = canonicalize_path
(defined($_[0]) ?
$_[0] : ".");
1454 my $fullpath = canonicalize_path
($cmd_dir_prefix . $path);
1456 die "Too many arguments specified\n";
1459 my ($file_type, $diff_status) = find_file_type_and_diff_status
($path);
1461 if (!$file_type && !$diff_status) {
1462 print STDERR
"svn: '$path' is not under version control\n";
1466 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1468 die "Unable to determine upstream SVN information from ",
1469 "working tree history\n";
1472 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1473 $path = "." if $path eq "";
1475 my $full_url = $url . ($fullpath eq "" ?
"" : "/$fullpath");
1478 print escape_url
($full_url), "\n";
1482 my $result = "Path: $path\n";
1483 $result .= "Name: " . basename
($path) . "\n" if $file_type ne "dir";
1484 $result .= "URL: " . escape_url
($full_url) . "\n";
1487 my $repos_root = $gs->repos_root;
1488 Git
::SVN
::remove_username
($repos_root);
1489 $result .= "Repository Root: " . escape_url
($repos_root) . "\n";
1492 $result .= "Repository Root: (offline)\n";
1495 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
1496 (::compare_svn_version
('1.5.4') <= 0 || $file_type ne "dir");
1497 $result .= "Revision: " . ($diff_status eq "A" ?
0 : $rev) . "\n";
1499 $result .= "Node Kind: " .
1500 ($file_type eq "dir" ?
"directory" : "file") . "\n";
1502 my $schedule = $diff_status eq "A"
1504 : ($diff_status eq "D" ?
"delete" : "normal");
1505 $result .= "Schedule: $schedule\n";
1507 if ($diff_status eq "A") {
1508 print $result, "\n";
1512 my ($lc_author, $lc_rev, $lc_date_utc);
1513 my @args = Git
::SVN
::Log
::git_svn_log_cmd
($rev, $rev, "--", $fullpath);
1514 my $log = command_output_pipe
(@args);
1515 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1517 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1519 $lc_date_utc = Git
::SVN
::Log
::parse_git_date
($2, $3);
1520 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1521 (undef, $lc_rev, undef) = ::extract_metadata
($1);
1526 Git
::SVN
::Log
::set_local_timezone
();
1528 $result .= "Last Changed Author: $lc_author\n";
1529 $result .= "Last Changed Rev: $lc_rev\n";
1530 $result .= "Last Changed Date: " .
1531 Git
::SVN
::Log
::format_svn_date
($lc_date_utc) . "\n";
1533 if ($file_type ne "dir") {
1534 my $text_last_updated_date =
1535 ($diff_status eq "D" ?
$lc_date_utc : (stat $path)[9]);
1537 "Text Last Updated: " .
1538 Git
::SVN
::Log
::format_svn_date
($text_last_updated_date) .
1541 if ($diff_status eq "D") {
1543 command_output_pipe
(qw(cat-file blob), "HEAD:$path");
1544 if ($file_type eq "link") {
1545 my $file_name = <$fh>;
1546 $checksum = md5sum
("link $file_name");
1548 $checksum = md5sum
($fh);
1550 command_close_pipe
($fh, $ctx);
1551 } elsif ($file_type eq "link") {
1553 command
(qw(cat-file blob), "HEAD:$path");
1555 md5sum
("link " . $file_name);
1557 open FILE
, "<", $path or die $!;
1558 $checksum = md5sum
(\
*FILE
);
1559 close FILE
or die $!;
1561 $result .= "Checksum: " . $checksum . "\n";
1564 print $result, "\n";
1568 my $target = shift || $_revision or die "SVN revision required\n";
1569 $target = $1 if $target =~ /^r(\d+)$/;
1570 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1571 my ($url, $rev, $uuid, $gs) = working_head_info
('HEAD');
1573 die "Unable to determine upstream SVN information from ".
1576 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
1577 die "Cannot find SVN revision $target\n" unless defined($c);
1578 $gs->rev_map_set($r, $c, 'reset', $uuid);
1579 print "r$r = $c ($gs->{ref_id})\n";
1583 if (!can_compress
()) {
1584 warn "Compress::Zlib could not be found; unhandled.log " .
1585 "files will not be compressed.\n";
1587 find
({ wanted
=> \
&gc_directory
, no_chdir
=> 1}, "$ENV{GIT_DIR}/svn");
1590 ########################### utility functions #########################
1593 my @cmd = qw
/rebase/;
1594 push @cmd, '-v' if $_verbose;
1595 push @cmd, qw
/--merge/ if $_merge;
1596 push @cmd, "--strategy=$_strategy" if $_strategy;
1597 push @cmd, "--preserve-merges" if $_preserve_merges;
1601 sub post_fetch_checkout
{
1602 return if $_no_checkout;
1603 return if verify_ref
('HEAD^0');
1604 my $gs = $Git::SVN
::_head
or return;
1606 # look for "trunk" ref if it exists
1607 my $remote = Git
::SVN
::read_all_remotes
()->{$gs->{repo_id
}};
1608 my $fetch = $remote->{fetch
};
1610 foreach my $p (keys %$fetch) {
1611 basename
($fetch->{$p}) eq 'trunk' or next;
1612 $gs = Git
::SVN
->new($fetch->{$p}, $gs->{repo_id
}, $p);
1617 command_noisy
(qw(update-ref HEAD), $gs->refname);
1618 return unless verify_ref
('HEAD^0');
1620 return if $ENV{GIT_DIR
} !~ m
#^(?:.*/)?\.git$#;
1621 my $index = $ENV{GIT_INDEX_FILE
} || "$ENV{GIT_DIR}/index";
1622 return if -f
$index;
1624 return if command_oneline
(qw
/rev-parse --is-inside-work-tree/) eq 'false';
1625 return if command_oneline
(qw
/rev-parse --is-inside-git-dir/) eq 'true';
1626 command_noisy
(qw
/read-tree -m -u -v HEAD HEAD/);
1627 print STDERR
"Checked out HEAD:\n ",
1628 $gs->full_url, " r", $gs->last_rev, "\n";
1629 if (auto_create_empty_directories
($gs)) {
1630 $gs->mkemptydirs($gs->last_rev);
1634 sub complete_svn_url
{
1635 my ($url, $path) = @_;
1637 if ($path !~ m
#^[a-z\+]+://#) {
1638 if (!defined $url || $url !~ m
#^[a-z\+]+://#) {
1639 fatal
("E: '$path' is not a complete URL ",
1640 "and a separate URL is not specified");
1642 return ($url, $path);
1647 sub complete_url_ls_init
{
1648 my ($ra, $repo_path, $switch, $pfx) = @_;
1649 unless ($repo_path) {
1650 print STDERR
"W: $switch not specified\n";
1653 $repo_path =~ s
#/+$##;
1654 if ($repo_path =~ m
#^[a-z\+]+://#) {
1655 $ra = Git
::SVN
::Ra
->new($repo_path);
1658 $repo_path =~ s
#^/+##;
1660 fatal
("E: '$repo_path' is not a complete URL ",
1661 "and a separate URL is not specified");
1664 my $url = $ra->{url
};
1665 my $gs = Git
::SVN
->init($url, undef, undef, undef, 1);
1666 my $k = "svn-remote.$gs->{repo_id}.url";
1667 my $orig_url = eval { command_oneline
(qw
/config --get/, $k) };
1668 if ($orig_url && ($orig_url ne $gs->{url
})) {
1669 die "$k already set: $orig_url\n",
1670 "wanted to set to: $gs->{url}\n";
1672 command_oneline
('config', $k, $gs->{url
}) unless $orig_url;
1673 my $remote_path = "$gs->{path}/$repo_path";
1674 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
1675 $remote_path =~ s
#/+#/#g;
1676 $remote_path =~ s
#^/##g;
1677 $remote_path .= "/*" if $remote_path !~ /\
*/;
1678 my ($n) = ($switch =~ /^--(\w+)/);
1679 if (length $pfx && $pfx !~ m
#/$#) {
1680 die "--prefix='$pfx' must have a trailing slash '/'\n";
1682 command_noisy
('config',
1684 "svn-remote.$gs->{repo_id}.$n",
1685 "$remote_path:refs/remotes/$pfx*" .
1686 ('/*' x
(($remote_path =~ tr
/*/*/) - 1)) );
1691 eval { command_oneline
([ 'rev-parse', '--verify', $ref ],
1692 { STDERR
=> 0 }); };
1695 sub get_tree_from_treeish
{
1697 # $treeish can be a symbolic ref, too:
1698 my $type = command_oneline
(qw
/cat-file -t/, $treeish);
1700 while ($type eq 'tag') {
1701 ($treeish, $type) = command
(qw
/cat-file tag/, $treeish);
1703 if ($type eq 'commit') {
1704 $expected = (grep /^tree /, command
(qw
/cat-file commit/,
1706 ($expected) = ($expected =~ /^tree ($sha1)$/o);
1707 die "Unable to get tree from $treeish\n" unless $expected;
1708 } elsif ($type eq 'tree') {
1709 $expected = $treeish;
1711 die "$treeish is a $type, expected tree, tag or commit\n";
1716 sub get_commit_entry
{
1717 my ($treeish) = shift;
1718 my %log_entry = ( log => '', tree
=> get_tree_from_treeish
($treeish) );
1719 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1720 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1721 open my $log_fh, '>', $commit_editmsg or croak
$!;
1723 my $type = command_oneline
(qw
/cat-file -t/, $treeish);
1724 if ($type eq 'commit' || $type eq 'tag') {
1725 my ($msg_fh, $ctx) = command_output_pipe
('cat-file',
1733 $in_msg = 1 if (/^\s*$/);
1734 $author = $1 if (/^author (.*>)/);
1735 } elsif (/^git-svn-id: /) {
1736 # skip this for now, we regenerate the
1737 # correct one on re-fetch anyways
1738 # TODO: set *:merge properties or like...
1740 if (/^From:/ || /^Signed-off-by:/) {
1746 $msgbuf =~ s/\s+$//s;
1747 if ($Git::SVN
::_add_author_from
&& defined($author)
1749 $msgbuf .= "\n\nFrom: $author";
1751 print $log_fh $msgbuf or croak
$!;
1752 command_close_pipe
($msg_fh, $ctx);
1754 close $log_fh or croak
$!;
1756 if ($_edit || ($type eq 'tree')) {
1757 chomp(my $editor = command_oneline
(qw(var GIT_EDITOR)));
1758 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
1760 rename $commit_editmsg, $commit_msg or croak
$!;
1763 # SVN requires messages to be UTF-8 when entering the repo
1765 open $log_fh, '<', $commit_msg or croak
$!;
1767 chomp($log_entry{log} = <$log_fh>);
1769 my $enc = Git
::config
('i18n.commitencoding') || 'UTF-8';
1770 my $msg = $log_entry{log};
1772 eval { $msg = Encode
::decode
($enc, $msg, 1) };
1774 die "Could not decode as $enc:\n", $msg,
1775 "\nPerhaps you need to set i18n.commitencoding\n";
1778 eval { $msg = Encode
::encode
('UTF-8', $msg, 1) };
1779 die "Could not encode as UTF-8:\n$msg\n" if $@
;
1781 $log_entry{log} = $msg;
1783 close $log_fh or croak
$!;
1790 my ($str, $file, $mode) = @_;
1791 open my $fd,'>',$file or croak
$!;
1792 print $fd $str,"\n" or croak
$!;
1793 close $fd or croak
$!;
1794 chmod ($mode &~ umask, $file) if (defined $mode);
1799 open my $fd,'<',$file or croak
"$!: file: $file\n";
1802 close $fd or croak
$!;
1807 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1809 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
1810 my $log = $cmd eq 'log';
1811 while (<$authors>) {
1813 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
1814 my ($user, $name, $email) = ($1, $2, $3);
1816 $Git::SVN
::Log
::rusers
{"$name <$email>"} = $user;
1818 $users{$user} = [$name, $email];
1821 close $authors or croak
$!;
1824 # convert GetOpt::Long specs for use by git-config
1825 sub read_git_config
{
1828 foreach my $o (keys %$opts) {
1829 # if we have mixedCase and a long option-only, then
1830 # it's a config-only variable that we don't need for
1832 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
1833 my $v = $opts->{$o};
1834 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
1836 my $arg = 'git config';
1837 $arg .= ' --int' if ($o =~ /[:=]i$/);
1838 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1839 if (ref $v eq 'ARRAY') {
1840 chomp(my @tmp = `$arg --get-all svn.$key`);
1843 chomp(my $tmp = `$arg --get svn.$key`);
1844 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
1849 delete @
$opts{@config_only} if @config_only;
1852 sub extract_metadata
{
1853 my $id = shift or return (undef, undef, undef);
1854 my ($url, $rev, $uuid) = ($id =~ /^\s
*git
-svn
-id
:\s
+(.*)\@
(\d
+)
1855 \s
([a
-f\d\
-]+)$/ix
);
1856 if (!defined $rev || !$uuid || !$url) {
1857 # some of the original repositories I made had
1858 # identifiers like this:
1859 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
1861 return ($url, $rev, $uuid);
1865 return extract_metadata
((grep(/^git-svn-id: /,
1866 command
(qw
/cat-file commit/, shift)))[-1]);
1869 sub cmt_sha2rev_batch
{
1871 my ($pid, $in, $out, $ctx) = command_bidi_pipe
(qw
/cat-file --batch/);
1874 foreach my $sha (@
{$list}) {
1877 print $out $sha, "\n";
1879 while (my $line = <$in>) {
1880 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1883 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1887 } elsif ($line =~ /^(git-svn-id: )/) {
1888 my (undef, $rev, undef) =
1889 extract_metadata
($line);
1893 $size -= length($line);
1894 last if ($size == 0);
1898 command_close_bidi_pipe
($pid, $in, $out, $ctx);
1903 sub working_head_info
{
1904 my ($head, $refs) = @_;
1905 my @args = qw
/rev-list --first-parent --pretty=medium/;
1906 my ($fh, $ctx) = command_output_pipe
(@args, $head);
1910 if ( m{^commit ($::sha1)$} ) {
1911 unshift @
$refs, $hash if $hash and $refs;
1915 next unless s{^\s*(git-svn-id:)}{$1};
1916 my ($url, $rev, $uuid) = extract_metadata
($_);
1917 if (defined $url && defined $rev) {
1918 next if $max{$url} and $max{$url} < $rev;
1919 if (my $gs = Git
::SVN
->find_by_url($url)) {
1920 my $c = $gs->rev_map_get($rev, $uuid);
1921 if ($c && $c eq $hash) {
1922 close $fh; # break the pipe
1923 return ($url, $rev, $uuid, $gs);
1925 $max{$url} ||= $gs->rev_map_max;
1930 command_close_pipe
($fh, $ctx);
1931 (undef, undef, undef, undef);
1934 sub read_commit_parents
{
1935 my ($parents, $c) = @_;
1936 chomp(my $p = command_oneline
(qw
/rev-list --parents -1/, $c));
1937 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1938 @
{$parents->{$c}} = split(/ /, $p);
1941 sub linearize_history
{
1942 my ($gs, $refs) = @_;
1944 foreach my $c (@
$refs) {
1945 read_commit_parents
(\
%parents, $c);
1950 my $last_svn_commit = $gs->last_commit;
1951 foreach my $c (reverse @
$refs) {
1952 next if $c eq $last_svn_commit;
1955 unshift @linear_refs, $c;
1958 # we only want the first parent to diff against for linear
1959 # history, we save the rest to inject when we finalize the
1961 my $fp_a = verify_ref
("$c~1");
1962 my $fp_b = shift @
{$parents{$c}} if $parents{$c};
1963 if (!$fp_a || !$fp_b) {
1965 "has no parent commit, and therefore ",
1966 "nothing to diff against.\n",
1967 "You should be working from a repository ",
1968 "originally created by git-svn\n";
1970 if ($fp_a ne $fp_b) {
1971 die "$c~1 = $fp_a, however parsing commit $c ",
1972 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1975 foreach my $p (@
{$parents{$c}}) {
1979 (\
@linear_refs, \
%parents);
1982 sub find_file_type_and_diff_status
{
1984 return ('dir', '') if $path eq '';
1987 command_oneline
(qw(diff --cached --name-status --), $path) || "";
1988 my $diff_status = (split(' ', $diff_output))[0] || "";
1990 my $ls_tree = command_oneline
(qw(ls-tree HEAD), $path) || "";
1992 return (undef, undef) if !$diff_status && !$ls_tree;
1994 if ($diff_status eq "A") {
1995 return ("link", $diff_status) if -l
$path;
1996 return ("dir", $diff_status) if -d
$path;
1997 return ("file", $diff_status);
2000 my $mode = (split(' ', $ls_tree))[0] || "";
2002 return ("link", $diff_status) if $mode eq "120000";
2003 return ("dir", $diff_status) if $mode eq "040000";
2004 return ("file", $diff_status);
2010 my $md5 = Digest
::MD5
->new();
2011 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
2012 $md5->addfile($arg) or croak
$!;
2013 } elsif ($ref eq 'SCALAR') {
2014 $md5->add($$arg) or croak
$!;
2016 $md5->add($arg) or croak
$!;
2018 fatal
"Can't provide MD5 hash for unknown ref type: '", $ref, "'";
2020 return $md5->hexdigest();
2024 if (can_compress
() && -f
$_ && basename
($_) eq "unhandled.log") {
2025 my $out_filename = $_ . ".gz";
2026 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
2028 my $gz = Compress
::Zlib
::gzopen
($out_filename, "ab") or
2029 die "Unable to open $out_filename: $!\n";
2032 while ($res = sysread($in_fh, my $str, 1024)) {
2033 $gz->gzwrite($str) or
2034 die "Unable to write: ".$gz->gzerror()."!\n";
2036 unlink $_ or die "unlink $File::Find::name: $!\n";
2037 } elsif (-f
$_ && basename
($_) eq "index") {
2038 unlink $_ or die "unlink $_: $!\n";
2047 $remotes = { # returned by read_all_remotes()
2049 # svn-remote.svn.url=https://svn.musicpd.org
2050 url
=> 'https://svn.musicpd.org',
2051 # svn-remote.svn.fetch=mpd/trunk:trunk
2053 'mpd/trunk' => 'trunk',
2055 # svn-remote.svn.tags=mpd/tags/*:tags/*
2060 regex
=> qr!mpd/tags/([^/]+)$!,
2066 regex
=> qr!tags/([^/]+)$!,
2073 $log_entry hashref as returned by libsvn_log_entry
()
2075 log => 'whitespace-formatted log entry
2076 ', # trailing newline is preserved
2077 revision
=> '8', # integer
2078 date
=> '2004-02-24T17:01:44.108345Z', # commit date
2079 author
=> 'committer name'
2083 # this is generated by generate_diff();
2084 @mods = array of diff
-index line hashes
, each element represents one line
2085 of diff
-index output
2087 diff
-index line
($m hash
)
2089 mode_a
=> first column of diff
-index output
, no leading
':',
2090 mode_b
=> second column of diff
-index output
,
2091 sha1_b
=> sha1sum of the final blob
,
2092 chg
=> change type
[MCRADT
],
2093 file_a
=> original file name of a file
(iff chg is
'C' or 'R')
2094 file_b
=> new
/current file name of a file
(any chg
)
2098 # retval of read_url_paths{,_all}();
2100 # repository root url
2101 'https://svn.musicpd.org' => {
2102 # repository path # GIT_SVN_ID
2103 'mpd/trunk' => 'trunk',
2104 'mpd/tags/0.11.5' => 'tags/0.11.5',
2109 I don
't trust the each() function on unless I created %hash myself
2110 because the internal iterator may not have started at base.