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(
50 command_close_bidi_pipe
54 Memoize::memoize 'Git::config';
55 Memoize::memoize 'Git::config_bool';
59 # From which subdir have we been invoked?
60 my $cmd_dir_prefix = eval {
61 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
64 my $git_dir_user_set = 1 if defined $ENV{GIT_DIR};
65 $ENV{GIT_DIR} ||= '.git';
66 $Git::SVN::Ra::_log_window_size = 100;
68 if (! exists $ENV{SVN_SSH} && exists $ENV{GIT_SSH}) {
69 $ENV{SVN_SSH} = $ENV{GIT_SSH};
72 if (exists $ENV{SVN_SSH} && $^O eq 'msys') {
73 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
74 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
77 $Git::SVN::Log::TZ = $ENV{TZ};
79 $| = 1; # unbuffer STDOUT
81 # All SVN commands do it. Otherwise we may die on SIGPIPE when the remote
82 # repository decides to close the connection which we expect to be kept alive.
83 $SIG{PIPE} = 'IGNORE';
85 # Given a dot separated version number, "subtract" it from
86 # the SVN::Core::VERSION; non-negaitive return means the SVN::Core
87 # is at least at the version the caller asked for.
88 sub compare_svn_version {
89 my (@ours) = split(/\./, $SVN::Core::VERSION);
90 my (@theirs) = split(/\./, $_[0]);
93 for ($i = 0; $i < @ours && $i < @theirs; $i++) {
94 $diff = $ours[$i] - $theirs[$i];
95 return $diff if ($diff);
97 return 1 if ($i < @ours);
98 return -1 if ($i < @theirs);
103 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
106 if (::compare_svn_version('1.1.0') < 0) {
107 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
111 $sha1 = qr/[a-f\d]{40}/;
112 $sha1_short = qr/[a-f\d]{4,40}/;
113 my ($_stdin, $_help, $_edit,
114 $_message, $_file, $_branch_dest,
115 $_template, $_shared,
116 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
117 $_merge, $_strategy, $_preserve_merges, $_dry_run, $_local,
118 $_prefix, $_no_checkout, $_url, $_verbose,
119 $_commit_url, $_tag, $_merge_info, $_interactive);
121 # This is a refactoring artifact so Git::SVN can get at this git-svn switch.
122 sub opt_prefix { return $_prefix || '' }
124 $Git::SVN::Fetcher::_placeholder_filename = ".gitignore";
126 my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
127 'config-dir=s' => \$Git::SVN::Ra::config_dir,
128 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
129 'ignore-paths=s' => \$Git::SVN::Fetcher::_ignore_regex,
130 'ignore-refs=s' => \$Git::SVN::Ra::_ignore_refs_regex );
131 my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
132 'authors-file|A=s' => \$_authors,
133 'authors-prog=s' => \$_authors_prog,
134 'repack:i' => \$Git::SVN::_repack,
135 'noMetadata' => \$Git::SVN::_no_metadata,
136 'useSvmProps' => \$Git::SVN::_use_svm_props,
137 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
138 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
139 'no-checkout' => \$_no_checkout,
141 'repack-flags|repack-args|repack-opts=s' =>
142 \$Git::SVN::_repack_flags,
143 'use-log-author' => \$Git::SVN::_use_log_author,
144 'add-author-from' => \$Git::SVN::_add_author_from,
145 'localtime' => \$Git::SVN::_localtime,
148 my ($_trunk, @_tags, @_branches, $_stdlayout);
150 my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
151 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
152 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
153 'stdlayout|s' => \$_stdlayout,
154 'minimize-url|m!' => \$Git::SVN::_minimize_url,
155 'no-metadata' => sub { $icv{noMetadata} = 1 },
156 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
157 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
158 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
159 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
161 my %cmt_opts = ( 'edit|e' => \$_edit,
162 'rmdir' => \$Git::SVN::Editor::_rmdir,
163 'find-copies-harder' => \$Git::SVN::Editor::_find_copies_harder,
164 'l=i' => \$Git::SVN::Editor::_rename_limit,
165 'copy-similarity|C=i'=> \$Git::SVN::Editor::_cp_similarity
169 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
170 { 'revision|r=s' => \$_revision,
171 'fetch-all|all' => \$_fetch_all,
172 'parent|p' => \$_fetch_parent,
174 clone => [ \&cmd_clone, "Initialize and fetch revisions",
175 { 'revision|r=s' => \$_revision,
176 'preserve-empty-dirs' =>
177 \$Git::SVN::Fetcher::_preserve_empty_dirs,
178 'placeholder-filename=s' =>
179 \$Git::SVN::Fetcher::_placeholder_filename,
180 %fc_opts, %init_opts } ],
181 init => [ \&cmd_init, "Initialize a repo for tracking" .
182 " (requires URL argument)",
184 'multi-init' => [ \&cmd_multi_init,
185 "Deprecated alias for ".
186 "'$0 init -T<trunk> -b<branches> -t<tags>'",
188 dcommit => [ \&cmd_dcommit,
189 'Commit several diffs to merge with upstream',
190 { 'merge|m|M' => \$_merge,
191 'strategy|s=s' => \$_strategy,
192 'verbose|v' => \$_verbose,
193 'dry-run|n' => \$_dry_run,
194 'fetch-all|all' => \$_fetch_all,
195 'commit-url=s' => \$_commit_url,
196 'revision|r=i' => \$_revision,
197 'no-rebase' => \$_no_rebase,
198 'mergeinfo=s' => \$_merge_info,
199 'interactive|i' => \$_interactive,
200 %cmt_opts, %fc_opts } ],
201 branch => [ \&cmd_branch,
202 'Create a branch in the SVN repository',
203 { 'message|m=s' => \$_message,
204 'destination|d=s' => \$_branch_dest,
205 'dry-run|n' => \$_dry_run,
207 'username=s' => \$Git::SVN::Prompt::_username,
208 'commit-url=s' => \$_commit_url } ],
209 tag => [ sub { $_tag = 1; cmd_branch(@_) },
210 'Create a tag in the SVN repository',
211 { 'message|m=s' => \$_message,
212 'destination|d=s' => \$_branch_dest,
213 'dry-run|n' => \$_dry_run,
214 'username=s' => \$Git::SVN::Prompt::_username,
215 'commit-url=s' => \$_commit_url } ],
216 'set-tree' => [ \&cmd_set_tree,
217 "Set an SVN repository to a git tree-ish",
218 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
219 'create-ignore' => [ \&cmd_create_ignore,
220 'Create a .gitignore per svn:ignore',
221 { 'revision|r=i' => \$_revision
223 'mkdirs' => [ \&cmd_mkdirs ,
224 "recreate empty directories after a checkout",
225 { 'revision|r=i' => \$_revision } ],
226 'propget' => [ \&cmd_propget,
227 'Print the value of a property on a file or directory',
228 { 'revision|r=i' => \$_revision } ],
229 'proplist' => [ \&cmd_proplist,
230 'List all properties of a file or directory',
231 { 'revision|r=i' => \$_revision } ],
232 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
233 { 'revision|r=i' => \$_revision
235 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
236 { 'revision|r=i' => \$_revision
238 'multi-fetch' => [ \&cmd_multi_fetch,
239 "Deprecated alias for $0 fetch --all",
240 { 'revision|r=s' => \$_revision, %fc_opts } ],
241 'migrate' => [ sub { },
242 # no-op, we automatically run this anyways,
243 'Migrate configuration/metadata/layout from
244 previous versions of git-svn',
245 { 'minimize' => \$Git::SVN::Migration::_minimize,
247 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
248 { 'limit=i' => \$Git::SVN::Log::limit,
249 'revision|r=s' => \$_revision,
250 'verbose|v' => \$Git::SVN::Log::verbose,
251 'incremental' => \$Git::SVN::Log::incremental,
252 'oneline' => \$Git::SVN::Log::oneline,
253 'show-commit' => \$Git::SVN::Log::show_commit,
254 'non-recursive' => \$Git::SVN::Log::non_recursive,
255 'authors-file|A=s' => \$_authors,
256 'color' => \$Git::SVN::Log::color,
257 'pager=s' => \$Git::SVN::Log::pager
259 'find-rev' => [ \&cmd_find_rev,
260 "Translate between SVN revision numbers and tree-ish",
262 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
263 { 'merge|m|M' => \$_merge,
264 'verbose|v' => \$_verbose,
265 'strategy|s=s' => \$_strategy,
266 'local|l' => \$_local,
267 'fetch-all|all' => \$_fetch_all,
268 'dry-run|n' => \$_dry_run,
269 'preserve-merges|p' => \$_preserve_merges,
271 'commit-diff' => [ \&cmd_commit_diff,
272 'Commit a diff between two trees',
273 { 'message|m=s' => \$_message,
274 'file|F=s' => \$_file,
275 'revision|r=s' => \$_revision,
277 'info' => [ \&cmd_info,
278 "Show info about the latest SVN revision
279 on the current branch",
280 { 'url' => \$_url, } ],
281 'blame' => [ \&Git::SVN::Log::cmd_blame,
282 "Show what revision and author last modified each line of a file",
283 { 'git-format' => \$Git::SVN::Log::_git_format } ],
284 'reset' => [ \&cmd_reset,
285 "Undo fetches back to the specified SVN revision",
286 { 'revision|r=s' => \$_revision,
287 'parent|p' => \$_fetch_parent } ],
289 "Compress unhandled.log files in .git/svn and remove " .
290 "index files in .git/svn",
297 my ($class, $reason) = @_;
298 return bless \$reason, shift;
302 die "Cannot use readline on FakeTerm: $$self";
307 $ENV{"GIT_SVN_NOTTY"}
308 ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT
309 : new Term::ReadLine 'git-svn';
312 $term = new FakeTerm "$@: going non-interactive";
316 for (my $i = 0; $i < @ARGV; $i++) {
317 if (defined $cmd{$ARGV[$i]}) {
321 } elsif ($ARGV[$i] eq 'help') {
327 # make sure we're always running at the top-level working directory
328 unless ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
329 unless (-d $ENV{GIT_DIR}) {
330 if ($git_dir_user_set) {
331 die "GIT_DIR=$ENV{GIT_DIR} explicitly set, ",
332 "but it is not a directory\n";
334 my $git_dir = delete $ENV{GIT_DIR};
337 $cdup = command_oneline(qw/rev-parse --show-cdup/);
338 $git_dir = '.' unless ($cdup);
339 chomp $cdup if ($cdup);
340 $cdup = "." unless ($cdup && length $cdup);
341 } "Already at toplevel, but $git_dir not found\n";
342 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
343 unless (-d $git_dir) {
344 die "$git_dir still not found after going to ",
347 $ENV{GIT_DIR} = $git_dir;
349 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
352 my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
354 read_git_config(\%opts);
355 if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
356 Getopt::Long::Configure('pass_through');
358 my $rv = GetOptions(%opts, 'h|H' => \$_help, 'version|V' => \$_version,
359 'minimize-connections' => \$Git::SVN::Migration::_minimize,
360 'id|i=s' => \$Git::SVN::default_ref_id,
361 'svn-remote|remote|R=s' => sub {
362 $Git::SVN::no_reuse_existing = 1;
363 $Git::SVN::default_repo_id = $_[1] });
364 exit 1 if (!$rv && $cmd && $cmd ne 'log');
367 version() if $_version;
368 usage(1) unless defined $cmd;
369 load_authors() if $_authors;
370 if (defined $_authors_prog) {
371 $_authors_prog = "'" . File::Spec->rel2abs($_authors_prog) . "'";
374 unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
375 Git::SVN::Migration::migration_check();
377 Git::SVN::init_vars();
379 Git::SVN::verify_remotes_sanity();
380 $cmd{$cmd}->[0]->(@ARGV);
381 post_fetch_checkout();
386 ####################### primary functions ######################
388 my $exit = shift || 0;
389 my $fd = $exit ? \*STDERR : \*STDOUT;
391 git-svn - bidirectional operations between a single Subversion tree and git
392 Usage: git svn <command> [options] [arguments]\n
394 print $fd "Available commands:\n" unless $cmd;
396 foreach (sort keys %cmd) {
397 next if $cmd && $cmd ne $_;
398 next if /^multi-/; # don't show deprecated commands
399 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
400 foreach (sort keys %{$cmd{$_}->[2]}) {
401 # mixed-case options are for .git/config only
402 next if /[A-Z]/ && /^[a-z]+$/i;
403 # prints out arguments as they should be passed:
404 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
405 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
407 split /\|/,$_)," $x\n";
411 \nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
412 arbitrary identifier if you're tracking multiple SVN branches/repositories in
413 one git repository and want to keep them separate. See git-svn(1) for more
421 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
426 my ($prompt, %arg) = @_;
427 my $valid_re = $arg{valid_re};
428 my $default = $arg{default};
432 if ( !( defined($term->IN)
433 && defined( fileno($term->IN) )
434 && defined( $term->OUT )
435 && defined( fileno($term->OUT) ) ) ){
436 return defined($default) ? $default : undef;
440 $resp = $term->readline($prompt);
441 if (!defined $resp) { # EOF
443 return defined $default ? $default : undef;
445 if ($resp eq '' and defined $default) {
448 if (!defined $valid_re or $resp =~ /$valid_re/) {
456 unless (-d $ENV{GIT_DIR}) {
457 my @init_db = ('init');
458 push @init_db, "--template=$_template" if defined $_template;
459 if (defined $_shared) {
460 if ($_shared =~ /[a-z]/) {
461 push @init_db, "--shared=$_shared";
463 push @init_db, "--shared";
466 command_noisy(@init_db);
467 $_repository = Git->repository(Repository => ".git");
470 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
471 foreach my $i (keys %icv) {
472 die "'$set' and '$i' cannot both be set\n" if $set;
473 next unless defined $icv{$i};
474 command_noisy('config', "$pfx.$i", $icv{$i});
477 my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex;
478 command_noisy('config', "$pfx.ignore-paths", $$ignore_paths_regex)
479 if defined $$ignore_paths_regex;
480 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
481 command_noisy('config', "$pfx.ignore-refs", $$ignore_refs_regex)
482 if defined $$ignore_refs_regex;
484 if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) {
485 my $fname = \$Git::SVN::Fetcher::_placeholder_filename;
486 command_noisy('config', "$pfx.preserve-empty-dirs", 'true');
487 command_noisy('config', "$pfx.placeholder-filename", $$fname);
492 my $repo_path = shift or return;
493 mkpath([$repo_path]) unless -d $repo_path;
494 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
495 $ENV{GIT_DIR} = '.git';
496 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
500 my ($url, $path) = @_;
501 if (!defined $path &&
502 (defined $_trunk || @_branches || @_tags ||
503 defined $_stdlayout) &&
504 $url !~ m#^[a-z\+]+://#) {
507 $path = basename($url) if !defined $path || !length $path;
508 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
509 cmd_init($url, $path);
510 command_oneline('config', 'svn.authorsfile', $authors_absolute)
512 Git::SVN::fetch_all($Git::SVN::default_repo_id);
516 if (defined $_stdlayout) {
517 $_trunk = 'trunk' if (!defined $_trunk);
518 @_tags = 'tags' if (! @_tags);
519 @_branches = 'branches' if (! @_branches);
521 if (defined $_trunk || @_branches || @_tags) {
522 return cmd_multi_init(@_);
524 my $url = shift or die "SVN repository location required ",
525 "as a command-line argument\n";
526 $url = canonicalize_url($url);
530 if ($Git::SVN::_minimize_url eq 'unset') {
531 $Git::SVN::_minimize_url = 0;
534 Git::SVN->init($url);
538 if (grep /^\d+=./, @_) {
539 die "'<rev>=<commit>' fetch arguments are ",
540 "no longer supported.\n";
544 die "Usage: $0 fetch [--all] [--parent] [svn-remote]\n";
546 $Git::SVN::no_reuse_existing = undef;
547 if ($_fetch_parent) {
548 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
550 die "Unable to determine upstream SVN information from ",
551 "working tree history\n";
553 # just fetch, don't checkout.
554 $_no_checkout = 'true';
555 $_fetch_all ? $gs->fetch_all : $gs->fetch;
556 } elsif ($_fetch_all) {
559 $remote ||= $Git::SVN::default_repo_id;
560 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
566 if ($_stdin || !@commits) {
567 print "Reading from stdin...\n";
570 if (/\b($sha1_short)\b/o) {
571 unshift @commits, $1;
576 foreach my $c (@commits) {
577 my @tmp = command('rev-parse',$c);
578 if (scalar @tmp == 1) {
580 } elsif (scalar @tmp > 1) {
581 push @revs, reverse(command('rev-list',@tmp));
583 fatal "Failed to rev-parse $c";
586 my $gs = Git::SVN->new;
587 my ($r_last, $cmt_last) = $gs->last_rev_commit;
589 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
590 fatal "There are new revisions that were fetched ",
591 "and need to be merged (or acknowledged) ",
592 "before committing.\nlast rev: $r_last\n",
593 " current: $gs->{last_rev}";
595 $gs->set_tree($_) foreach @revs;
596 print "Done committing ",scalar @revs," revisions to SVN\n";
600 sub split_merge_info_range {
602 if ($range =~ /(\d+)-(\d+)/) {
603 return (int($1), int($2));
605 return (int($range), int($range));
613 my @arr = split(/,/, $in);
614 for my $element (@arr) {
615 my ($start, $end) = split_merge_info_range($element);
619 my @sorted = @arr [ sort {
620 $fnums[$a] <=> $fnums[$b]
626 for my $element (@sorted) {
627 my ($start, $end) = split_merge_info_range($element);
634 if ($start <= $last+1) {
640 if ($first == $last) {
641 push @return, "$first";
643 push @return, "$first-$last";
650 if ($first == $last) {
651 push @return, "$first";
653 push @return, "$first-$last";
657 return join(',', @return);
660 sub merge_revs_into_hash {
661 my ($hash, $minfo) = @_;
662 my @lines = split(' ', $minfo);
664 for my $line (@lines) {
665 my ($branchpath, $revs) = split(/:/, $line);
667 if (exists($hash->{$branchpath})) {
668 # Merge the two revision sets
669 my $combined = "$hash->{$branchpath},$revs";
670 $hash->{$branchpath} = combine_ranges($combined);
672 # Just do range combining for consolidation
673 $hash->{$branchpath} = combine_ranges($revs);
678 sub merge_merge_info {
679 my ($mergeinfo_one, $mergeinfo_two) = @_;
680 my %result_hash = ();
682 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
683 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
686 # Sort below is for consistency's sake
687 for my $branchname (sort keys(%result_hash)) {
688 my $revlist = $result_hash{$branchname};
689 $result .= "$branchname:$revlist\n"
694 sub populate_merge_info {
695 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
698 read_commit_parents(\%parentshash, $d);
699 my @parents = @{$parentshash{$d}};
702 my $all_parents_ok = 1;
703 my $aggregate_mergeinfo = '';
704 my $rooturl = $gs->repos_root;
706 if (defined($rewritten_parent)) {
707 # Replace first parent with newly-rewritten version
709 unshift @parents, $rewritten_parent;
712 foreach my $parent (@parents) {
713 my ($branchurl, $svnrev, $paruuid) =
714 cmt_metadata($parent);
716 unless (defined($svnrev)) {
717 # Should have been caught be preflight check
718 fatal "merge commit $d has ancestor $parent, but that change "
719 ."does not have git-svn metadata!";
721 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
722 fatal "commit $parent git-svn metadata changed mid-run!";
726 my $ra = Git::SVN::Ra->new($branchurl);
727 my (undef, undef, $props) =
728 $ra->get_dir(canonicalize_path("."), $svnrev);
729 my $par_mergeinfo = $props->{'svn:mergeinfo'};
730 unless (defined $par_mergeinfo) {
733 # Merge previous mergeinfo values
734 $aggregate_mergeinfo =
735 merge_merge_info($aggregate_mergeinfo,
738 next if $parent eq $parents[0]; # Skip first parent
739 # Add new changes being placed in tree by merge
740 my @cmd = (qw/rev-list --reverse/,
742 foreach my $par (@parents) {
743 unless ($par eq $parent) {
748 my ($revlist, $ctx) = command_output_pipe(@cmd);
752 my (undef, $csvnrev, undef) =
754 unless (defined $csvnrev) {
755 # A child is missing SVN annotations...
756 # this might be OK, or might not be.
757 warn "W:child $irev is merged into revision "
758 ."$d but does not have git-svn metadata. "
759 ."This means git-svn cannot determine the "
760 ."svn revision numbers to place into the "
761 ."svn:mergeinfo property. You must ensure "
762 ."a branch is entirely committed to "
763 ."SVN before merging it in order for "
764 ."svn:mergeinfo population to function "
767 push @revsin, $csvnrev;
769 command_close_pipe($revlist, $ctx);
771 last unless $all_parents_ok;
773 # We now have a list of all SVN revnos which are
774 # merged by this particular parent. Integrate them.
775 next if $#revsin == -1;
776 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
777 $aggregate_mergeinfo =
778 merge_merge_info($aggregate_mergeinfo,
781 if ($all_parents_ok and $aggregate_mergeinfo) {
782 return $aggregate_mergeinfo;
791 command_noisy(qw/update-index --refresh/);
792 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) }
793 'Cannot dcommit with a dirty index. Commit your changes first, '
794 . "or stash them with `git stash'.\n";
798 if ($head ne 'HEAD') {
800 command_oneline([qw/symbolic-ref -q HEAD/])
803 $old_head =~ s{^refs/heads/}{};
805 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
807 command(['checkout', $head], STDERR => 0);
811 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
813 die "Unable to determine upstream SVN information from ",
814 "$head history.\nPerhaps the repository is empty.";
817 if (defined $_commit_url) {
820 $url = eval { command_oneline('config', '--get',
821 "svn-remote.$gs->{repo_id}.commiturl") };
823 $url = $gs->full_pushurl
827 my $last_rev = $_revision if defined $_revision;
829 print "Committing to $url ...\n";
831 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
832 if ($_no_rebase && scalar(@$linear_refs) > 1) {
833 warn "Attempting to commit more than one change while ",
834 "--no-rebase is enabled.\n",
835 "If these changes depend on each other, re-running ",
836 "without --no-rebase may be required."
839 if (defined $_interactive){
840 my $ask_default = "y";
841 foreach my $d (@$linear_refs){
842 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
846 command_close_pipe($fh, $ctx);
847 $_ = ask("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
848 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
849 default => $ask_default);
850 die "Commit this patch reply required" unless defined $_;
859 my $expect_url = $url;
861 my $push_merge_info = eval {
862 command_oneline(qw/config --get svn.pushmergeinfo/)
864 if (not defined($push_merge_info)
865 or $push_merge_info eq "false"
866 or $push_merge_info eq "no"
867 or $push_merge_info eq "never") {
868 $push_merge_info = 0;
871 unless (defined($_merge_info) || ! $push_merge_info) {
872 # Preflight check of changes to ensure no issues with mergeinfo
873 # This includes check for uncommitted-to-SVN parents
874 # (other than the first parent, which we will handle),
875 # information from different SVN repos, and paths
876 # which are not underneath this repository root.
877 my $rooturl = $gs->repos_root;
878 foreach my $d (@$linear_refs) {
880 read_commit_parents(\%parentshash, $d);
881 my @realparents = @{$parentshash{$d}};
882 if ($#realparents > 0) {
884 shift @realparents; # Remove/ignore first parent
885 foreach my $parent (@realparents) {
886 my ($branchurl, $svnrev, $paruuid) = cmt_metadata($parent);
887 unless (defined $paruuid) {
888 # A parent is missing SVN annotations...
889 # abort the whole operation.
890 fatal "$parent is merged into revision $d, "
891 ."but does not have git-svn metadata. "
892 ."Either dcommit the branch or use a "
893 ."local cherry-pick, FF merge, or rebase "
894 ."instead of an explicit merge commit.";
897 unless ($paruuid eq $uuid) {
898 # Parent has SVN metadata from different repository
899 fatal "merge parent $parent for change $d has "
900 ."git-svn uuid $paruuid, while current change "
904 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
905 # This branch is very strange indeed.
906 fatal "merge parent $parent for $d is on branch "
907 ."$branchurl, which is not under the "
908 ."git-svn root $rooturl!";
915 my $rewritten_parent;
916 Git::SVN::remove_username($expect_url);
917 if (defined($_merge_info)) {
918 $_merge_info =~ tr{ }{\n};
921 my $d = shift @$linear_refs or last;
922 unless (defined $last_rev) {
923 (undef, $last_rev, undef) = cmt_metadata("$d~1");
924 unless (defined $last_rev) {
925 fatal "Unable to extract revision information ",
930 print "diff-tree $d~1 $d\n";
934 unless (defined($_merge_info) || ! $push_merge_info) {
935 $_merge_info = populate_merge_info($d, $gs,
941 my %ed_opts = ( r => $last_rev,
942 log => get_commit_entry($d)->{log},
943 ra => Git::SVN::Ra->new($url),
944 config => SVN::Core::config_get_config(
945 $Git::SVN::Ra::config_dir
950 print "Committed r$_[0]\n";
953 mergeinfo => $_merge_info,
955 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
956 print "No changes\n$d~1 == $d\n";
957 } elsif ($parents->{$d} && @{$parents->{$d}}) {
958 $gs->{inject_parents_dcommit}->{$cmt_rev} =
961 $_fetch_all ? $gs->fetch_all : $gs->fetch;
962 $last_rev = $cmt_rev;
965 # we always want to rebase against the current HEAD,
966 # not any head that was passed to us
967 my @diff = command('diff-tree', $d,
971 @finish = rebase_cmd();
972 print STDERR "W: $d and ", $gs->refname,
973 " differ, using @finish:\n",
974 join("\n", @diff), "\n";
976 print "No changes between current HEAD and ",
978 "\nResetting to the latest ",
980 @finish = qw/reset --mixed/;
982 command_noisy(@finish, $gs->refname);
984 $rewritten_parent = command_oneline(qw/rev-parse HEAD/);
988 my ($url_, $rev_, $uuid_, $gs_) =
989 working_head_info('HEAD', \@refs);
990 my ($linear_refs_, $parents_) =
991 linearize_history($gs_, \@refs);
992 if (scalar(@$linear_refs) !=
993 scalar(@$linear_refs_)) {
994 fatal "# of revisions changed ",
996 join("\n", @$linear_refs),
998 join("\n", @$linear_refs_), "\n",
999 'If you are attempting to commit ',
1000 "merges, try running:\n\t",
1001 'git rebase --interactive',
1002 '--preserve-merges ',
1004 "\nBefore dcommitting";
1006 if ($url_ ne $expect_url) {
1007 if ($url_ eq $gs->metadata_url) {
1009 "Accepting rewritten URL:",
1013 "URL mismatch after rebase:",
1014 " $url_ != $expect_url";
1017 if ($uuid_ ne $uuid) {
1018 fatal "uuid mismatch after rebase: ",
1023 for ($i = 0; $i < scalar @$linear_refs; $i++) {
1024 my $new = $linear_refs_->[$i] or next;
1026 $parents->{$linear_refs->[$i]};
1036 my $new_head = command_oneline(qw/rev-parse HEAD/);
1037 my $new_is_symbolic = eval {
1038 command_oneline(qw/symbolic-ref -q HEAD/);
1040 if ($new_is_symbolic) {
1041 print "dcommitted the branch ", $head, "\n";
1043 print "dcommitted on a detached HEAD because you gave ",
1044 "a revision argument.\n",
1045 "The rewritten commit is: ", $new_head, "\n";
1047 command(['checkout', $old_head], STDERR => 0);
1050 unlink $gs->{index};
1054 my ($branch_name, $head) = @_;
1056 unless (defined $branch_name && length $branch_name) {
1057 die(($_tag ? "tag" : "branch") . " name required\n");
1061 my (undef, $rev, undef, $gs) = working_head_info($head);
1062 my $src = $gs->full_pushurl;
1064 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1065 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
1067 if ($#{$allglobs} == 0) {
1068 $glob = $allglobs->[0];
1070 unless(defined $_branch_dest) {
1072 $_tag ? "tag" : "branch",
1073 " paths defined for Subversion repository.\n",
1074 "You must specify where you want to create the ",
1075 $_tag ? "tag" : "branch",
1076 " with the --destination argument.\n";
1078 foreach my $g (@{$allglobs}) {
1079 my $re = Git::SVN::Editor::glob2pat($g->{path}->{left});
1080 if ($_branch_dest =~ /$re/) {
1085 unless (defined $glob) {
1086 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1087 foreach my $g (@{$allglobs}) {
1088 $g->{path}->{left} =~ /$dest_re/ or next;
1089 if (defined $glob) {
1090 die "Ambiguous destination: ",
1091 $_branch_dest, "\nmatches both '",
1092 $glob->{path}->{left}, "' and '",
1093 $g->{path}->{left}, "'\n";
1097 unless (defined $glob) {
1099 $_tag ? "tag" : "branch",
1100 " destination $_branch_dest\n";
1104 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
1106 if (defined $_commit_url) {
1107 $url = $_commit_url;
1109 $url = eval { command_oneline('config', '--get',
1110 "svn-remote.$gs->{repo_id}.commiturl") };
1112 $url = $remote->{pushurl} || $remote->{url};
1115 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
1117 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1118 $src=~s/^http:/https:/;
1123 my $ctx = SVN::Client->new(
1124 auth => Git::SVN::Ra::_auth_providers(),
1126 ${ $_[0] } = defined $_message
1128 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
1134 $ctx->ls($dst, 'HEAD', 0);
1135 } and die "branch ${branch_name} already exists\n";
1137 print "Copying ${src} at r${rev} to ${dst}...\n";
1138 $ctx->copy($src, $rev, $dst)
1145 my $revision_or_hash = shift or die "SVN or git revision required ",
1146 "as a command-line argument\n";
1148 if ($revision_or_hash =~ /^r\d+$/) {
1152 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
1154 die "Unable to determine upstream SVN information from ",
1157 my $desired_revision = substr($revision_or_hash, 1);
1158 $result = $gs->rev_map_get($desired_revision, $uuid);
1160 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
1163 print "$result\n" if $result;
1166 sub auto_create_empty_directories {
1168 my $var = eval { command_oneline('config', '--get', '--bool',
1169 "svn-remote.$gs->{repo_id}.automkdirs") };
1170 # By default, create empty directories by consulting the unhandled log,
1171 # but allow setting it to 'false' to skip it.
1172 return !($var && $var eq 'false');
1176 command_noisy(qw/update-index --refresh/);
1177 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1179 die "Unable to determine upstream SVN information from ",
1180 "working tree history\n";
1183 print "Remote Branch: " . $gs->refname . "\n";
1184 print "SVN URL: " . $url . "\n";
1187 if (command(qw/diff-index HEAD --/)) {
1188 print STDERR "Cannot rebase with uncommited changes:\n";
1189 command_noisy('status');
1193 # rebase will checkout for us, so no need to do it explicitly
1194 $_no_checkout = 'true';
1195 $_fetch_all ? $gs->fetch_all : $gs->fetch;
1197 command_noisy(rebase_cmd(), $gs->refname);
1198 if (auto_create_empty_directories($gs)) {
1203 sub cmd_show_ignore {
1204 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1205 $gs ||= Git::SVN->new;
1206 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1207 $gs->prop_walk($gs->path, $r, sub {
1208 my ($gs, $path, $props) = @_;
1209 print STDOUT "\n# $path\n";
1210 my $s = $props->{'svn:ignore'} or return;
1211 $s =~ s/[\r\n]+/\n/g;
1215 print STDOUT "$s\n";
1219 sub cmd_show_externals {
1220 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1221 $gs ||= Git::SVN->new;
1222 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1223 $gs->prop_walk($gs->path, $r, sub {
1224 my ($gs, $path, $props) = @_;
1225 print STDOUT "\n# $path\n";
1226 my $s = $props->{'svn:externals'} or return;
1227 $s =~ s/[\r\n]+/\n/g;
1230 print STDOUT "$s\n";
1234 sub cmd_create_ignore {
1235 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1236 $gs ||= Git::SVN->new;
1237 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1238 $gs->prop_walk($gs->path, $r, sub {
1239 my ($gs, $path, $props) = @_;
1240 # $path is of the form /path/to/dir/
1241 $path = '.' . $path;
1242 # SVN can have attributes on empty directories,
1243 # which git won't track
1244 mkpath([$path]) unless -d $path;
1245 my $ignore = $path . '.gitignore';
1246 my $s = $props->{'svn:ignore'} or return;
1247 open(GITIGNORE, '>', $ignore)
1248 or fatal("Failed to open `$ignore' for writing: $!");
1249 $s =~ s/[\r\n]+/\n/g;
1252 # Prefix all patterns so that the ignore doesn't apply
1253 # to sub-directories.
1255 print GITIGNORE "$s\n";
1257 or fatal("Failed to close `$ignore': $!");
1258 command_noisy('add', '-f', $ignore);
1263 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1264 $gs ||= Git::SVN->new;
1265 $gs->mkemptydirs($_revision);
1268 # get_svnprops(PATH)
1269 # ------------------
1270 # Helper for cmd_propget and cmd_proplist below.
1273 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1274 $gs ||= Git::SVN->new;
1276 # prefix THE PATH by the sub-directory from which the user
1278 $path = $cmd_dir_prefix . $path;
1279 fatal("No such file or directory: $path") unless -e $path;
1280 my $is_dir = -d $path ? 1 : 0;
1281 $path = join_paths($gs->{path}, $path);
1283 # canonicalize the path (otherwise libsvn will abort or fail to
1285 $path = canonicalize_path($path);
1287 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1290 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1293 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1298 # cmd_propget (PROP, PATH)
1299 # ------------------------
1300 # Print the SVN property PROP for PATH.
1302 my ($prop, $path) = @_;
1303 $path = '.' if not defined $path;
1304 usage(1) if not defined $prop;
1305 my $props = get_svnprops($path);
1306 if (not defined $props->{$prop}) {
1307 fatal("`$path' does not have a `$prop' SVN property.");
1309 print $props->{$prop} . "\n";
1312 # cmd_proplist (PATH)
1313 # -------------------
1314 # Print the list of SVN properties for PATH.
1317 $path = '.' if not defined $path;
1318 my $props = get_svnprops($path);
1319 print "Properties on '$path':\n";
1320 foreach (sort keys %{$props}) {
1325 sub cmd_multi_init {
1327 unless (defined $_trunk || @_branches || @_tags) {
1331 $_prefix = '' unless defined $_prefix;
1333 $url = canonicalize_url($url);
1337 if (defined $_trunk) {
1339 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
1340 # try both old-style and new-style lookups:
1341 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
1342 unless ($gs_trunk) {
1343 my ($trunk_url, $trunk_path) =
1344 complete_svn_url($url, $_trunk);
1345 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
1349 return unless @_branches || @_tags;
1350 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
1351 foreach my $path (@_branches) {
1352 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
1354 foreach my $path (@_tags) {
1355 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
1359 sub cmd_multi_fetch {
1360 $Git::SVN::no_reuse_existing = undef;
1361 my $remotes = Git::SVN::read_all_remotes();
1362 foreach my $repo_id (sort keys %$remotes) {
1363 if ($remotes->{$repo_id}->{url}) {
1364 Git::SVN::fetch_all($repo_id, $remotes);
1369 # this command is special because it requires no metadata
1370 sub cmd_commit_diff {
1371 my ($ta, $tb, $url) = @_;
1372 my $usage = "Usage: $0 commit-diff -r<revision> ".
1373 "<tree-ish> <tree-ish> [<URL>]";
1374 fatal($usage) if (!defined $ta || !defined $tb);
1376 if (!defined $url) {
1377 my $gs = eval { Git::SVN->new };
1379 fatal("Needed URL or usable git-svn --id in ",
1380 "the command-line\n", $usage);
1383 $svn_path = $gs->path;
1385 unless (defined $_revision) {
1386 fatal("-r|--revision is a required argument\n", $usage);
1388 if (defined $_message && defined $_file) {
1389 fatal("Both --message/-m and --file/-F specified ",
1390 "for the commit message.\n",
1391 "I have no idea what you mean");
1393 if (defined $_file) {
1394 $_message = file_to_s($_file);
1396 $_message ||= get_commit_entry($tb)->{log};
1398 my $ra ||= Git::SVN::Ra->new($url);
1401 $r = $ra->get_latest_revnum;
1402 } elsif ($r !~ /^\d+$/) {
1403 die "revision argument: $r not understood by git-svn\n";
1405 my %ed_opts = ( r => $r,
1410 editor_cb => sub { print "Committed r$_[0]\n" },
1411 svn_path => $svn_path );
1412 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
1413 print "No changes\n$ta == $tb\n";
1419 my $path = canonicalize_path(defined($_[0]) ? $_[0] : ".");
1420 my $fullpath = canonicalize_path($cmd_dir_prefix . $path);
1422 die "Too many arguments specified\n";
1425 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1427 if (!$file_type && !$diff_status) {
1428 print STDERR "svn: '$path' is not under version control\n";
1432 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1434 die "Unable to determine upstream SVN information from ",
1435 "working tree history\n";
1438 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1439 $path = "." if $path eq "";
1441 my $full_url = canonicalize_url( add_path_to_url( $url, $fullpath ) );
1444 print "$full_url\n";
1448 my $result = "Path: $path\n";
1449 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
1450 $result .= "URL: $full_url\n";
1453 my $repos_root = $gs->repos_root;
1454 Git::SVN::remove_username($repos_root);
1455 $result .= "Repository Root: " . canonicalize_url($repos_root) . "\n";
1458 $result .= "Repository Root: (offline)\n";
1461 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
1462 (::compare_svn_version('1.5.4') <= 0 || $file_type ne "dir");
1463 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1465 $result .= "Node Kind: " .
1466 ($file_type eq "dir" ? "directory" : "file") . "\n";
1468 my $schedule = $diff_status eq "A"
1470 : ($diff_status eq "D" ? "delete" : "normal");
1471 $result .= "Schedule: $schedule\n";
1473 if ($diff_status eq "A") {
1474 print $result, "\n";
1478 my ($lc_author, $lc_rev, $lc_date_utc);
1479 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $fullpath);
1480 my $log = command_output_pipe(@args);
1481 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1483 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1485 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1486 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1487 (undef, $lc_rev, undef) = ::extract_metadata($1);
1492 Git::SVN::Log::set_local_timezone();
1494 $result .= "Last Changed Author: $lc_author\n";
1495 $result .= "Last Changed Rev: $lc_rev\n";
1496 $result .= "Last Changed Date: " .
1497 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1499 if ($file_type ne "dir") {
1500 my $text_last_updated_date =
1501 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1503 "Text Last Updated: " .
1504 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1507 if ($diff_status eq "D") {
1509 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1510 if ($file_type eq "link") {
1511 my $file_name = <$fh>;
1512 $checksum = md5sum("link $file_name");
1514 $checksum = md5sum($fh);
1516 command_close_pipe($fh, $ctx);
1517 } elsif ($file_type eq "link") {
1519 command(qw(cat-file blob), "HEAD:$path");
1521 md5sum("link " . $file_name);
1523 open FILE, "<", $path or die $!;
1524 $checksum = md5sum(\*FILE);
1525 close FILE or die $!;
1527 $result .= "Checksum: " . $checksum . "\n";
1530 print $result, "\n";
1534 my $target = shift || $_revision or die "SVN revision required\n";
1535 $target = $1 if $target =~ /^r(\d+)$/;
1536 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1537 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1539 die "Unable to determine upstream SVN information from ".
1542 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
1543 die "Cannot find SVN revision $target\n" unless defined($c);
1544 $gs->rev_map_set($r, $c, 'reset', $uuid);
1545 print "r$r = $c ($gs->{ref_id})\n";
1549 if (!can_compress()) {
1550 warn "Compress::Zlib could not be found; unhandled.log " .
1551 "files will not be compressed.\n";
1553 find({ wanted => \&gc_directory, no_chdir => 1}, "$ENV{GIT_DIR}/svn");
1556 ########################### utility functions #########################
1559 my @cmd = qw/rebase/;
1560 push @cmd, '-v' if $_verbose;
1561 push @cmd, qw/--merge/ if $_merge;
1562 push @cmd, "--strategy=$_strategy" if $_strategy;
1563 push @cmd, "--preserve-merges" if $_preserve_merges;
1567 sub post_fetch_checkout {
1568 return if $_no_checkout;
1569 return if verify_ref('HEAD^0');
1570 my $gs = $Git::SVN::_head or return;
1572 # look for "trunk" ref if it exists
1573 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1574 my $fetch = $remote->{fetch};
1576 foreach my $p (keys %$fetch) {
1577 basename($fetch->{$p}) eq 'trunk' or next;
1578 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1583 command_noisy(qw(update-ref HEAD), $gs->refname);
1584 return unless verify_ref('HEAD^0');
1586 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
1587 my $index = $ENV{GIT_INDEX_FILE} || "$ENV{GIT_DIR}/index";
1588 return if -f $index;
1590 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
1591 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1592 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1593 print STDERR "Checked out HEAD:\n ",
1594 $gs->full_url, " r", $gs->last_rev, "\n";
1595 if (auto_create_empty_directories($gs)) {
1596 $gs->mkemptydirs($gs->last_rev);
1600 sub complete_svn_url {
1601 my ($url, $path) = @_;
1602 $path = canonicalize_path($path);
1604 # If the path is not a URL...
1605 if ($path !~ m#^[a-z\+]+://#) {
1606 if (!defined $url || $url !~ m#^[a-z\+]+://#) {
1607 fatal("E: '$path' is not a complete URL ",
1608 "and a separate URL is not specified");
1610 return ($url, $path);
1615 sub complete_url_ls_init {
1616 my ($ra, $repo_path, $switch, $pfx) = @_;
1617 unless ($repo_path) {
1618 print STDERR "W: $switch not specified\n";
1621 $repo_path = canonicalize_path($repo_path);
1622 if ($repo_path =~ m#^[a-z\+]+://#) {
1623 $ra = Git::SVN::Ra->new($repo_path);
1626 $repo_path =~ s#^/+##;
1628 fatal("E: '$repo_path' is not a complete URL ",
1629 "and a separate URL is not specified");
1633 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1634 my $k = "svn-remote.$gs->{repo_id}.url";
1635 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
1636 if ($orig_url && ($orig_url ne $gs->url)) {
1637 die "$k already set: $orig_url\n",
1638 "wanted to set to: $gs->url\n";
1640 command_oneline('config', $k, $gs->url) unless $orig_url;
1642 my $remote_path = join_paths( $gs->path, $repo_path );
1643 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
1644 $remote_path =~ s#^/##g;
1645 $remote_path .= "/*" if $remote_path !~ /\*/;
1646 my ($n) = ($switch =~ /^--(\w+)/);
1647 if (length $pfx && $pfx !~ m#/$#) {
1648 die "--prefix='$pfx' must have a trailing slash '/'\n";
1650 command_noisy('config',
1652 "svn-remote.$gs->{repo_id}.$n",
1653 "$remote_path:refs/remotes/$pfx*" .
1654 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
1659 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1660 { STDERR => 0 }); };
1663 sub get_tree_from_treeish {
1665 # $treeish can be a symbolic ref, too:
1666 my $type = command_oneline(qw/cat-file -t/, $treeish);
1668 while ($type eq 'tag') {
1669 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
1671 if ($type eq 'commit') {
1672 $expected = (grep /^tree /, command(qw/cat-file commit/,
1674 ($expected) = ($expected =~ /^tree ($sha1)$/o);
1675 die "Unable to get tree from $treeish\n" unless $expected;
1676 } elsif ($type eq 'tree') {
1677 $expected = $treeish;
1679 die "$treeish is a $type, expected tree, tag or commit\n";
1684 sub get_commit_entry {
1685 my ($treeish) = shift;
1686 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
1687 my $commit_editmsg = "$ENV{GIT_DIR}/COMMIT_EDITMSG";
1688 my $commit_msg = "$ENV{GIT_DIR}/COMMIT_MSG";
1689 open my $log_fh, '>', $commit_editmsg or croak $!;
1691 my $type = command_oneline(qw/cat-file -t/, $treeish);
1692 if ($type eq 'commit' || $type eq 'tag') {
1693 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
1701 $in_msg = 1 if (/^\s*$/);
1702 $author = $1 if (/^author (.*>)/);
1703 } elsif (/^git-svn-id: /) {
1704 # skip this for now, we regenerate the
1705 # correct one on re-fetch anyways
1706 # TODO: set *:merge properties or like...
1708 if (/^From:/ || /^Signed-off-by:/) {
1714 $msgbuf =~ s/\s+$//s;
1715 if ($Git::SVN::_add_author_from && defined($author)
1717 $msgbuf .= "\n\nFrom: $author";
1719 print $log_fh $msgbuf or croak $!;
1720 command_close_pipe($msg_fh, $ctx);
1722 close $log_fh or croak $!;
1724 if ($_edit || ($type eq 'tree')) {
1725 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1726 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
1728 rename $commit_editmsg, $commit_msg or croak $!;
1731 # SVN requires messages to be UTF-8 when entering the repo
1733 open $log_fh, '<', $commit_msg or croak $!;
1735 chomp($log_entry{log} = <$log_fh>);
1737 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1738 my $msg = $log_entry{log};
1740 eval { $msg = Encode::decode($enc, $msg, 1) };
1742 die "Could not decode as $enc:\n", $msg,
1743 "\nPerhaps you need to set i18n.commitencoding\n";
1746 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1747 die "Could not encode as UTF-8:\n$msg\n" if $@;
1749 $log_entry{log} = $msg;
1751 close $log_fh or croak $!;
1758 my ($str, $file, $mode) = @_;
1759 open my $fd,'>',$file or croak $!;
1760 print $fd $str,"\n" or croak $!;
1761 close $fd or croak $!;
1762 chmod ($mode &~ umask, $file) if (defined $mode);
1767 open my $fd,'<',$file or croak "$!: file: $file\n";
1770 close $fd or croak $!;
1775 # '<svn username> = real-name <email address>' mapping based on git-svnimport:
1777 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
1778 my $log = $cmd eq 'log';
1779 while (<$authors>) {
1781 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.+)>\s*$/;
1782 my ($user, $name, $email) = ($1, $2, $3);
1784 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1786 $users{$user} = [$name, $email];
1789 close $authors or croak $!;
1792 # convert GetOpt::Long specs for use by git-config
1793 sub read_git_config {
1796 foreach my $o (keys %$opts) {
1797 # if we have mixedCase and a long option-only, then
1798 # it's a config-only variable that we don't need for
1800 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
1801 my $v = $opts->{$o};
1802 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
1804 my $arg = 'git config';
1805 $arg .= ' --int' if ($o =~ /[:=]i$/);
1806 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1807 if (ref $v eq 'ARRAY') {
1808 chomp(my @tmp = `$arg --get-all svn.$key`);
1811 chomp(my $tmp = `$arg --get svn.$key`);
1812 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
1817 delete @$opts{@config_only} if @config_only;
1820 sub extract_metadata {
1821 my $id = shift or return (undef, undef, undef);
1822 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
1823 \s([a-f\d\-]+)$/ix);
1824 if (!defined $rev || !$uuid || !$url) {
1825 # some of the original repositories I made had
1826 # identifiers like this:
1827 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
1829 return ($url, $rev, $uuid);
1833 return extract_metadata((grep(/^git-svn-id: /,
1834 command(qw/cat-file commit/, shift)))[-1]);
1837 sub cmt_sha2rev_batch {
1839 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
1842 foreach my $sha (@{$list}) {
1845 print $out $sha, "\n";
1847 while (my $line = <$in>) {
1848 if ($first && $line =~ /^[[:xdigit:]]{40}\smissing$/) {
1851 $line =~ /^[[:xdigit:]]{40}\scommit\s(\d+)$/) {
1855 } elsif ($line =~ /^(git-svn-id: )/) {
1856 my (undef, $rev, undef) =
1857 extract_metadata($line);
1861 $size -= length($line);
1862 last if ($size == 0);
1866 command_close_bidi_pipe($pid, $in, $out, $ctx);
1871 sub working_head_info {
1872 my ($head, $refs) = @_;
1873 my @args = qw/rev-list --first-parent --pretty=medium/;
1874 my ($fh, $ctx) = command_output_pipe(@args, $head);
1878 if ( m{^commit ($::sha1)$} ) {
1879 unshift @$refs, $hash if $hash and $refs;
1883 next unless s{^\s*(git-svn-id:)}{$1};
1884 my ($url, $rev, $uuid) = extract_metadata($_);
1885 if (defined $url && defined $rev) {
1886 next if $max{$url} and $max{$url} < $rev;
1887 if (my $gs = Git::SVN->find_by_url($url)) {
1888 my $c = $gs->rev_map_get($rev, $uuid);
1889 if ($c && $c eq $hash) {
1890 close $fh; # break the pipe
1891 return ($url, $rev, $uuid, $gs);
1893 $max{$url} ||= $gs->rev_map_max;
1898 command_close_pipe($fh, $ctx);
1899 (undef, undef, undef, undef);
1902 sub read_commit_parents {
1903 my ($parents, $c) = @_;
1904 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
1905 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
1906 @{$parents->{$c}} = split(/ /, $p);
1909 sub linearize_history {
1910 my ($gs, $refs) = @_;
1912 foreach my $c (@$refs) {
1913 read_commit_parents(\%parents, $c);
1918 my $last_svn_commit = $gs->last_commit;
1919 foreach my $c (reverse @$refs) {
1920 next if $c eq $last_svn_commit;
1923 unshift @linear_refs, $c;
1926 # we only want the first parent to diff against for linear
1927 # history, we save the rest to inject when we finalize the
1929 my $fp_a = verify_ref("$c~1");
1930 my $fp_b = shift @{$parents{$c}} if $parents{$c};
1931 if (!$fp_a || !$fp_b) {
1933 "has no parent commit, and therefore ",
1934 "nothing to diff against.\n",
1935 "You should be working from a repository ",
1936 "originally created by git-svn\n";
1938 if ($fp_a ne $fp_b) {
1939 die "$c~1 = $fp_a, however parsing commit $c ",
1940 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
1943 foreach my $p (@{$parents{$c}}) {
1947 (\@linear_refs, \%parents);
1950 sub find_file_type_and_diff_status {
1952 return ('dir', '') if $path eq '';
1955 command_oneline(qw(diff --cached --name-status --), $path) || "";
1956 my $diff_status = (split(' ', $diff_output))[0] || "";
1958 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
1960 return (undef, undef) if !$diff_status && !$ls_tree;
1962 if ($diff_status eq "A") {
1963 return ("link", $diff_status) if -l $path;
1964 return ("dir", $diff_status) if -d $path;
1965 return ("file", $diff_status);
1968 my $mode = (split(' ', $ls_tree))[0] || "";
1970 return ("link", $diff_status) if $mode eq "120000";
1971 return ("dir", $diff_status) if $mode eq "040000";
1972 return ("file", $diff_status);
1978 my $md5 = Digest::MD5->new();
1979 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
1980 $md5->addfile($arg) or croak $!;
1981 } elsif ($ref eq 'SCALAR') {
1982 $md5->add($$arg) or croak $!;
1984 $md5->add($arg) or croak $!;
1986 fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
1988 return $md5->hexdigest();
1992 if (can_compress() && -f $_ && basename($_) eq "unhandled.log") {
1993 my $out_filename = $_ . ".gz";
1994 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
1996 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
1997 die "Unable to open $out_filename: $!\n";
2000 while ($res = sysread($in_fh, my $str, 1024)) {
2001 $gz->gzwrite($str) or
2002 die "Unable to write: ".$gz->gzerror()."!\n";
2004 unlink $_ or die "unlink $File::Find::name: $!\n";
2005 } elsif (-f $_ && basename($_) eq "index") {
2006 unlink $_ or die "unlink $_: $!\n";
2015 $remotes = { # returned by read_all_remotes()
2017 # svn-remote.svn.url=https://svn.musicpd.org
2018 url => 'https://svn.musicpd.org',
2019 # svn-remote.svn.fetch=mpd/trunk:trunk
2021 'mpd/trunk' => 'trunk',
2023 # svn-remote.svn.tags=mpd/tags/*:tags/*
2028 regex => qr!mpd/tags/([^/]+)$!,
2034 regex => qr!tags/([^/]+)$!,
2041 $log_entry hashref as returned by libsvn_log_entry()
2043 log => 'whitespace-formatted log entry
2044 ', # trailing newline is preserved
2045 revision => '8', # integer
2046 date => '2004-02-24T17:01:44.108345Z', # commit date
2047 author => 'committer name'
2051 # this is generated by generate_diff();
2052 @mods = array of diff-index line hashes, each element represents one line
2053 of diff-index output
2055 diff-index line ($m hash)
2057 mode_a => first column of diff-index output, no leading ':',
2058 mode_b => second column of diff-index output,
2059 sha1_b => sha1sum of the final blob,
2060 chg => change type [MCRADT],
2061 file_a => original file name of a file (iff chg is 'C' or 'R')
2062 file_b => new/current file name of a file (any chg)
2066 # retval of read_url_paths{,_all}();
2068 # repository root url
2069 'https://svn.musicpd.org' => {
2070 # repository path # GIT_SVN_ID
2071 'mpd/trunk' => 'trunk',
2072 'mpd/tags/0.11.5' => 'tags/0.11.5',
2077 I don't trust the each() function on unless I created %hash myself
2078 because the internal iterator may not have started at base.