blob: 70cb5e2a83b5bec6e9f95ea0cb7feb112e2dfec5 [file] [log] [blame]
Zbigniew Jędrzejewski-Szmek0754e082012-05-01 22:18:18 +02001#!/usr/bin/perl
Eric Wong551ce282006-02-20 10:57:29 -08002# Copyright (C) 2006, Eric Wong <normalperson@yhbt.net>
3# License: GPL v2 or later
Ævar Arnfjörð Bjarmasond48b2842010-09-24 20:00:52 +00004use 5.008;
Jeff King5338ed22020-10-21 23:24:00 -04005use warnings $ENV{GIT_PERL_FATAL_WARNINGS} ? qw(FATAL all) : ();
Eric Wong3397f9d2006-02-16 01:24:16 -08006use strict;
7use vars qw/ $AUTHOR $VERSION
brian m. carlson9ab33152020-06-22 18:04:12 +00008 $oid $oid_short $oid_length
9 $_revision $_repository
Mark Lodato36db1ed2009-05-14 21:27:15 -040010 $_q $_authors $_authors_prog %users/;
Eric Wong3397f9d2006-02-16 01:24:16 -080011$AUTHOR = 'Eric Wong <normalperson@yhbt.net>';
Eric Wong60d02cc2006-07-06 00:14:16 -070012$VERSION = '@@GIT_VERSION@@';
Eric Wong13ccd6d2006-03-29 22:37:18 -080013
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070014use Carp qw/croak/;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070015use File::Basename qw/dirname basename/;
16use File::Path qw/mkpath/;
17use File::Spec;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070018use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070019use Memoize;
20
Michael G. Schwern29499c02012-07-26 16:22:24 -070021use Git::SVN;
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070022use Git::SVN::Editor;
23use Git::SVN::Fetcher;
24use Git::SVN::Ra;
25use Git::SVN::Prompt;
Michael G. Schwernb74fda12012-07-26 17:26:01 -070026use Git::SVN::Log;
Michael G. Schwernb772cb92012-07-26 17:26:03 -070027use Git::SVN::Migration;
Michael G. Schwernc2768fa2012-07-26 16:22:22 -070028
Michael G. Schwern91e6e0c2012-07-28 02:38:26 -070029use Git::SVN::Utils qw(
30 fatal
31 can_compress
32 canonicalize_path
33 canonicalize_url
Michael G. Schwernca475a62012-07-28 02:38:29 -070034 join_paths
Michael G. Schwernd2fd1192012-07-28 02:47:50 -070035 add_path_to_url
Michael G. Schwern5eaa1fd2012-07-28 02:47:52 -070036 join_paths
Michael G. Schwern91e6e0c2012-07-28 02:38:26 -070037);
38
Michael G. Schwernb0e75252012-07-26 17:26:02 -070039use Git qw(
40 git_cmd_try
41 command
42 command_oneline
43 command_noisy
44 command_output_pipe
45 command_close_pipe
46 command_bidi_pipe
47 command_close_bidi_pipe
Eric Wongb26098f2016-10-14 00:27:53 +000048 get_record
Michael G. Schwernb0e75252012-07-26 17:26:02 -070049);
50
Michael G. Schwerne96cdba2012-07-26 17:26:04 -070051BEGIN {
52 Memoize::memoize 'Git::config';
53 Memoize::memoize 'Git::config_bool';
54}
55
Michael G. Schwernb0e75252012-07-26 17:26:02 -070056
Benoit Sigoure15153452007-10-16 16:36:50 +020057# From which subdir have we been invoked?
58my $cmd_dir_prefix = eval {
59 command_oneline([qw/rev-parse --show-prefix/], STDERR => 0)
60} || '';
61
Eric Wong6af1db42007-02-14 16:04:10 -080062$Git::SVN::Ra::_log_window_size = 100;
Eric Wong13ccd6d2006-03-29 22:37:18 -080063
Sebastian Schuberth184892f2011-10-14 23:53:31 +010064if (! exists $ENV{SVN_SSH} && exists $ENV{GIT_SSH}) {
65 $ENV{SVN_SSH} = $ENV{GIT_SSH};
66}
67
68if (exists $ENV{SVN_SSH} && $^O eq 'msys') {
69 $ENV{SVN_SSH} =~ s/\\/\\\\/g;
70 $ENV{SVN_SSH} =~ s/(.*)/"$1"/;
Karthik Rf3a87d92009-08-18 18:54:40 -050071}
72
Eric Wongf8c9d1d2007-01-12 02:35:20 -080073$Git::SVN::Log::TZ = $ENV{TZ};
Eric Wong3397f9d2006-02-16 01:24:16 -080074$ENV{TZ} = 'UTC';
Eric Wonga00439a2006-06-27 19:39:13 -070075$| = 1; # unbuffer STDOUT
Eric Wong3397f9d2006-02-16 01:24:16 -080076
Roman Kagan6ade9bd2012-04-02 17:52:34 +040077# All SVN commands do it. Otherwise we may die on SIGPIPE when the remote
78# repository decides to close the connection which we expect to be kept alive.
79$SIG{PIPE} = 'IGNORE';
80
Junio C Hamanof760c902012-05-02 19:53:50 +000081# Given a dot separated version number, "subtract" it from
82# the SVN::Core::VERSION; non-negaitive return means the SVN::Core
83# is at least at the version the caller asked for.
84sub compare_svn_version {
85 my (@ours) = split(/\./, $SVN::Core::VERSION);
86 my (@theirs) = split(/\./, $_[0]);
87 my ($i, $diff);
88
89 for ($i = 0; $i < @ours && $i < @theirs; $i++) {
90 $diff = $ours[$i] - $theirs[$i];
91 return $diff if ($diff);
92 }
93 return 1 if ($i < @ours);
94 return -1 if ($i < @theirs);
95 return 0;
96}
97
josh robbd32fad22010-02-24 16:13:50 +130098sub _req_svn {
99 require SVN::Core; # use()-ing this causes segfaults for me... *shrug*
100 require SVN::Ra;
101 require SVN::Delta;
Junio C Hamanof760c902012-05-02 19:53:50 +0000102 if (::compare_svn_version('1.1.0') < 0) {
josh robbd32fad22010-02-24 16:13:50 +1300103 fatal "Need SVN::Core 1.1.0 or better (got $SVN::Core::VERSION)";
104 }
Eric Wongb9c85182006-12-15 23:58:07 -0800105}
Michael G. Schwernc2768fa2012-07-26 16:22:22 -0700106
brian m. carlson9ab33152020-06-22 18:04:12 +0000107$oid = qr/(?:[a-f\d]{40}(?:[a-f\d]{24})?)/;
108$oid_short = qr/[a-f\d]{4,64}/;
109$oid_length = 40;
Eric Wong44320b92007-01-13 22:35:53 -0800110my ($_stdin, $_help, $_edit,
Marc Branchaud62244062009-06-23 13:02:08 -0400111 $_message, $_file, $_branch_dest,
Eric Wongd05d72e2007-01-15 22:59:26 -0800112 $_template, $_shared,
Jason Merrillc2abd832009-04-06 16:37:59 -0400113 $_version, $_fetch_all, $_no_rebase, $_fetch_parent,
John Keeping2934a482013-01-17 22:19:33 +0000114 $_before, $_after,
Johannes Schindelinea8b7be2019-11-22 22:59:29 +0000115 $_merge, $_strategy, $_rebase_merges, $_dry_run, $_parents, $_local,
Steven Grimm4be40382008-05-10 22:11:18 -0700116 $_prefix, $_no_checkout, $_url, $_verbose,
Alfred Perlstein83c94332014-12-07 02:47:23 -0800117 $_commit_url, $_tag, $_merge_info, $_interactive, $_set_svn_props);
Michael G. Schwern0f80aa02012-07-26 16:22:23 -0700118
119# This is a refactoring artifact so Git::SVN can get at this git-svn switch.
120sub opt_prefix { return $_prefix || '' }
121
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500122$Git::SVN::Fetcher::_placeholder_filename = ".gitignore";
Simon Arlott49750f32009-03-30 19:31:41 +0100123$_q ||= 0;
Eric Wong706587f2007-01-18 17:50:01 -0800124my %remote_opts = ( 'username=s' => \$Git::SVN::Prompt::_username,
125 'config-dir=s' => \$Git::SVN::Ra::config_dir,
Vitaly \"_Vi\" Shukelaedc662f2009-01-26 00:21:40 +0200126 'no-auth-cache' => \$Git::SVN::Prompt::_no_auth_cache,
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500127 'ignore-paths=s' => \$Git::SVN::Fetcher::_ignore_regex,
Paul Walmsleya7b10232013-05-04 00:10:18 +0100128 'include-paths=s' => \$Git::SVN::Fetcher::_include_regex,
Michael Olsoncdb51a12011-10-10 16:27:37 -0700129 'ignore-refs=s' => \$Git::SVN::Ra::_ignore_refs_regex );
Eric Wong0bed5ea2007-02-09 02:45:03 -0800130my %fc_opts = ( 'follow-parent|follow!' => \$Git::SVN::_follow_parent,
Eric Wongdc5869c2006-05-24 02:07:32 -0700131 'authors-file|A=s' => \$_authors,
Mark Lodato36db1ed2009-05-14 21:27:15 -0400132 'authors-prog=s' => \$_authors_prog,
Eric Wongecc712d2007-01-31 12:28:10 -0800133 'repack:i' => \$Git::SVN::_repack,
Eric Wong97ae0912007-02-11 15:21:24 -0800134 'noMetadata' => \$Git::SVN::_no_metadata,
135 'useSvmProps' => \$Git::SVN::_use_svm_props,
Eric Wong62e349d2007-02-16 19:57:29 -0800136 'useSvnsyncProps' => \$Git::SVN::_use_svnsync_props,
Eric Wong6af1db42007-02-14 16:04:10 -0800137 'log-window-size=i' => \$Git::SVN::Ra::_log_window_size,
Eric Wong1e889ef2007-02-16 01:45:13 -0800138 'no-checkout' => \$_no_checkout,
Simon Arlott49750f32009-03-30 19:31:41 +0100139 'quiet|q+' => \$_q,
Eric Wongecc712d2007-01-31 12:28:10 -0800140 'repack-flags|repack-args|repack-opts=s' =>
141 \$Git::SVN::_repack_flags,
Andy Whitcroft70ae04e2007-11-22 13:44:42 +0000142 'use-log-author' => \$Git::SVN::_use_log_author,
Avery Pennarun6aa9ba12008-04-15 21:04:17 -0400143 'add-author-from' => \$Git::SVN::_add_author_from,
Pete Harlane82f0d72009-01-17 20:10:14 -0800144 'localtime' => \$Git::SVN::_localtime,
Eric Wong706587f2007-01-18 17:50:01 -0800145 %remote_opts );
Eric Wong36f5b1f2006-05-23 19:23:41 -0700146
Marc Branchaud62244062009-06-23 13:02:08 -0400147my ($_trunk, @_tags, @_branches, $_stdlayout);
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800148my %icv;
Eric Wongdadc6d22007-02-14 12:27:41 -0800149my %init_opts = ( 'template=s' => \$_template, 'shared:s' => \$_shared,
Marc Branchaud62244062009-06-23 13:02:08 -0400150 'trunk|T=s' => \$_trunk, 'tags|t=s@' => \@_tags,
151 'branches|b=s@' => \@_branches, 'prefix=s' => \$_prefix,
martin f. krafft8f728fb2007-07-14 11:25:28 +0200152 'stdlayout|s' => \$_stdlayout,
Eric Wong6b488292009-07-25 00:00:50 -0700153 'minimize-url|m!' => \$Git::SVN::_minimize_url,
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800154 'no-metadata' => sub { $icv{noMetadata} = 1 },
155 'use-svm-props' => sub { $icv{useSvmProps} = 1 },
156 'use-svnsync-props' => sub { $icv{useSvnsyncProps} = 1 },
157 'rewrite-root=s' => sub { $icv{rewriteRoot} = $_[1] },
Jay Soffian3e18ce12010-01-23 03:30:00 -0500158 'rewrite-uuid=s' => sub { $icv{rewriteUUID} = $_[1] },
Eric Wongdadc6d22007-02-14 12:27:41 -0800159 %remote_opts );
Eric Wong27e9fb82006-06-27 19:39:12 -0700160my %cmt_opts = ( 'edit|e' => \$_edit,
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500161 'rmdir' => \$Git::SVN::Editor::_rmdir,
162 'find-copies-harder' => \$Git::SVN::Editor::_find_copies_harder,
163 'l=i' => \$Git::SVN::Editor::_rename_limit,
164 'copy-similarity|C=i'=> \$Git::SVN::Editor::_cp_similarity
Eric Wong27e9fb82006-06-27 19:39:12 -0700165);
Eric Wong9d55b412006-06-12 15:53:13 -0700166
Eric Wong3397f9d2006-02-16 01:24:16 -0800167my %cmd = (
Eric Wong2a3240b2007-01-04 18:09:56 -0800168 fetch => [ \&cmd_fetch, "Download new revisions from SVN",
Eric Wonge98671e2007-02-14 02:21:19 -0800169 { 'revision|r=s' => \$_revision,
Eric Wong905f8b72007-02-16 03:22:40 -0800170 'fetch-all|all' => \$_fetch_all,
Jason Merrillc2abd832009-04-06 16:37:59 -0400171 'parent|p' => \$_fetch_parent,
Eric Wonge98671e2007-02-14 02:21:19 -0800172 %fc_opts } ],
Eric Wong0425ea92007-02-16 18:45:01 -0800173 clone => [ \&cmd_clone, "Initialize and fetch revisions",
174 { 'revision|r=s' => \$_revision,
Ray Chen40a15302011-07-20 18:37:26 -0400175 'preserve-empty-dirs' =>
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500176 \$Git::SVN::Fetcher::_preserve_empty_dirs,
Ray Chen40a15302011-07-20 18:37:26 -0400177 'placeholder-filename=s' =>
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500178 \$Git::SVN::Fetcher::_placeholder_filename,
Eric Wong0425ea92007-02-16 18:45:01 -0800179 %fc_opts, %init_opts } ],
Eric Wongd2866f92007-01-11 12:26:16 -0800180 init => [ \&cmd_init, "Initialize a repo for tracking" .
Eric Wongf8ab6b72006-05-31 15:49:56 -0700181 " (requires URL argument)",
Eric Wong9d55b412006-06-12 15:53:13 -0700182 \%init_opts ],
Eric Wongdadc6d22007-02-14 12:27:41 -0800183 'multi-init' => [ \&cmd_multi_init,
184 "Deprecated alias for ".
185 "'$0 init -T<trunk> -b<branches> -t<tags>'",
186 \%init_opts ],
Eric Wongd7ad3be2007-01-14 03:14:28 -0800187 dcommit => [ \&cmd_dcommit,
188 'Commit several diffs to merge with upstream',
Eric Wong3289e862006-12-15 23:58:08 -0800189 { 'merge|m|M' => \$_merge,
190 'strategy|s=s' => \$_strategy,
Eric Wong905f8b72007-02-16 03:22:40 -0800191 'verbose|v' => \$_verbose,
Eric Wong3289e862006-12-15 23:58:08 -0800192 'dry-run|n' => \$_dry_run,
Eric Wong905f8b72007-02-16 03:22:40 -0800193 'fetch-all|all' => \$_fetch_all,
Eric Wongba24e742008-08-07 02:06:16 -0700194 'commit-url=s' => \$_commit_url,
Alfred Perlstein83c94332014-12-07 02:47:23 -0800195 'set-svn-props=s' => \$_set_svn_props,
Eric Wongba24e742008-08-07 02:06:16 -0700196 'revision|r=i' => \$_revision,
Karl Hasselström171af112007-05-03 07:51:35 +0200197 'no-rebase' => \$_no_rebase,
Steven Walter6abd9332010-09-24 23:51:50 -0400198 'mergeinfo=s' => \$_merge_info,
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200199 'interactive|i' => \$_interactive,
Eric Wong4b155222006-12-22 21:59:24 -0800200 %cmt_opts, %fc_opts } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700201 branch => [ \&cmd_branch,
202 'Create a branch in the SVN repository',
203 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400204 'destination|d=s' => \$_branch_dest,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700205 'dry-run|n' => \$_dry_run,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200206 'parents' => \$_parents,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100207 'tag|t' => \$_tag,
208 'username=s' => \$Git::SVN::Prompt::_username,
209 'commit-url=s' => \$_commit_url } ],
Florian Ragwitz5de70ef2008-10-04 19:35:17 -0700210 tag => [ sub { $_tag = 1; cmd_branch(@_) },
211 'Create a tag in the SVN repository',
212 { 'message|m=s' => \$_message,
Marc Branchaud62244062009-06-23 13:02:08 -0400213 'destination|d=s' => \$_branch_dest,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100214 'dry-run|n' => \$_dry_run,
Tobias Schultef4f4c7f2013-05-15 22:14:43 +0200215 'parents' => \$_parents,
Igor Mironov6594f0b2010-01-12 03:21:51 +1100216 'username=s' => \$Git::SVN::Prompt::_username,
217 'commit-url=s' => \$_commit_url } ],
Eric Wong1ce255d2007-01-14 23:21:16 -0800218 'set-tree' => [ \&cmd_set_tree,
219 "Set an SVN repository to a git tree-ish",
Robin H. Johnsone84dc6d2009-05-05 11:16:14 -0700220 { 'stdin' => \$_stdin, %cmt_opts, %fc_opts, } ],
Benoit Sigoured05ddec2007-10-16 16:36:49 +0200221 'create-ignore' => [ \&cmd_create_ignore,
222 'Create a .gitignore per svn:ignore',
223 { 'revision|r=i' => \$_revision
224 } ],
Eric Wong6111b932009-11-15 18:57:16 -0800225 'mkdirs' => [ \&cmd_mkdirs ,
226 "recreate empty directories after a checkout",
227 { 'revision|r=i' => \$_revision } ],
Benoit Sigoure15153452007-10-16 16:36:50 +0200228 'propget' => [ \&cmd_propget,
229 'Print the value of a property on a file or directory',
230 { 'revision|r=i' => \$_revision } ],
Alfred Perlstein83c94332014-12-07 02:47:23 -0800231 'propset' => [ \&cmd_propset,
232 'Set the value of a property on a file or directory - will be set on commit',
233 {} ],
Benoit Sigoure51e057c2007-10-16 16:36:51 +0200234 'proplist' => [ \&cmd_proplist,
235 'List all properties of a file or directory',
236 { 'revision|r=i' => \$_revision } ],
Eric Wong5969cbe2007-01-11 17:58:39 -0800237 'show-ignore' => [ \&cmd_show_ignore, "Show svn:ignore listings",
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200238 { 'revision|r=i' => \$_revision
Lars Hjemli05b4df32007-09-05 11:35:29 +0200239 } ],
Vineet Kumar2d879792007-11-19 14:56:15 -0800240 'show-externals' => [ \&cmd_show_externals, "Show svn:externals listings",
241 { 'revision|r=i' => \$_revision
242 } ],
Eric Wong1c8443b2007-01-14 02:17:00 -0800243 'multi-fetch' => [ \&cmd_multi_fetch,
Eric Wonge98671e2007-02-14 02:21:19 -0800244 "Deprecated alias for $0 fetch --all",
245 { 'revision|r=s' => \$_revision, %fc_opts } ],
Eric Wong706587f2007-01-18 17:50:01 -0800246 'migrate' => [ sub { },
247 # no-op, we automatically run this anyways,
Eric Wong706587f2007-01-18 17:50:01 -0800248 'Migrate configuration/metadata/layout from
249 previous versions of git-svn',
Eric Wonga836a0e2007-02-14 19:34:56 -0800250 { 'minimize' => \$Git::SVN::Migration::_minimize,
251 %remote_opts } ],
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800252 'log' => [ \&Git::SVN::Log::cmd_show_log, 'Show commit logs',
253 { 'limit=i' => \$Git::SVN::Log::limit,
Eric Wong79bb8d82006-06-01 02:35:44 -0700254 'revision|r=s' => \$_revision,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800255 'verbose|v' => \$Git::SVN::Log::verbose,
256 'incremental' => \$Git::SVN::Log::incremental,
257 'oneline' => \$Git::SVN::Log::oneline,
258 'show-commit' => \$Git::SVN::Log::show_commit,
259 'non-recursive' => \$Git::SVN::Log::non_recursive,
Eric Wong79bb8d82006-06-01 02:35:44 -0700260 'authors-file|A=s' => \$_authors,
Eric Wongf8c9d1d2007-01-12 02:35:20 -0800261 'color' => \$Git::SVN::Log::color,
Lars Hjemli4dbfe2e2007-09-07 02:00:08 +0200262 'pager=s' => \$Git::SVN::Log::pager
Eric Wong79bb8d82006-06-01 02:35:44 -0700263 } ],
Eric Wong222566e2008-08-08 01:41:58 -0700264 'find-rev' => [ \&cmd_find_rev,
265 "Translate between SVN revision numbers and tree-ish",
Eric Wonga831a3f2014-09-07 08:35:19 +0000266 { 'B|before' => \$_before,
267 'A|after' => \$_after } ],
Eric Wong905f8b72007-02-16 03:22:40 -0800268 'rebase' => [ \&cmd_rebase, "Fetch and rebase your working directory",
269 { 'merge|m|M' => \$_merge,
270 'verbose|v' => \$_verbose,
271 'strategy|s=s' => \$_strategy,
Eric Wongdee41f32007-03-13 11:40:36 -0700272 'local|l' => \$_local,
Eric Wong905f8b72007-02-16 03:22:40 -0800273 'fetch-all|all' => \$_fetch_all,
Seth Falcon7d45e142008-05-19 20:29:17 -0700274 'dry-run|n' => \$_dry_run,
Johannes Schindelinea8b7be2019-11-22 22:59:29 +0000275 'rebase-merges|p' => \$_rebase_merges,
276 'preserve-merges|p' => \$_rebase_merges,
Eric Wong905f8b72007-02-16 03:22:40 -0800277 %fc_opts } ],
Eric Wong44320b92007-01-13 22:35:53 -0800278 'commit-diff' => [ \&cmd_commit_diff,
279 'Commit a diff between two trees',
Eric Wong27e9fb82006-06-27 19:39:12 -0700280 { 'message|m=s' => \$_message,
281 'file|F=s' => \$_file,
Eric Wong45bf4732006-11-09 01:19:37 -0800282 'revision|r=s' => \$_revision,
Eric Wong27e9fb82006-06-27 19:39:12 -0700283 %cmt_opts } ],
David D. Kilzere6fefa92007-11-21 11:57:18 -0800284 'info' => [ \&cmd_info,
285 "Show info about the latest SVN revision
286 on the current branch",
David D. Kilzer8b014d72007-11-21 11:57:19 -0800287 { 'url' => \$_url, } ],
Tim Stoakes6fb53752008-02-10 15:21:08 +1030288 'blame' => [ \&Git::SVN::Log::cmd_blame,
289 "Show what revision and author last modified each line of a file",
Michael G. Schwern2c96a6c2012-07-26 17:26:00 -0700290 { 'git-format' => \$Git::SVN::Log::_git_format } ],
Ben Jackson195643f2009-06-03 20:45:52 -0700291 'reset' => [ \&cmd_reset,
292 "Undo fetches back to the specified SVN revision",
293 { 'revision|r=s' => \$_revision,
294 'parent|p' => \$_fetch_parent } ],
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -0500295 'gc' => [ \&cmd_gc,
296 "Compress unhandled.log files in .git/svn and remove " .
297 "index files in .git/svn",
298 {} ],
Eric Wong3397f9d2006-02-16 01:24:16 -0800299);
Eric Wong9d55b412006-06-12 15:53:13 -0700300
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200301package FakeTerm;
302sub new {
303 my ($class, $reason) = @_;
304 return bless \$reason, shift;
305}
306sub readline {
307 my $self = shift;
308 die "Cannot use readline on FakeTerm: $$self";
309}
310package main;
311
Eric Wong30d45f72014-09-14 07:38:29 +0000312my $term;
313sub term_init {
314 $term = eval {
Eric Wong47092c12015-01-15 08:54:22 +0000315 require Term::ReadLine;
Eric Wong30d45f72014-09-14 07:38:29 +0000316 $ENV{"GIT_SVN_NOTTY"}
317 ? new Term::ReadLine 'git-svn', \*STDIN, \*STDOUT
318 : new Term::ReadLine 'git-svn';
319 };
320 if ($@) {
321 $term = new FakeTerm "$@: going non-interactive";
322 }
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200323}
324
Eric Wong3397f9d2006-02-16 01:24:16 -0800325my $cmd;
326for (my $i = 0; $i < @ARGV; $i++) {
327 if (defined $cmd{$ARGV[$i]}) {
328 $cmd = $ARGV[$i];
329 splice @ARGV, $i, 1;
330 last;
Ben Jackson9a8c92a2009-05-30 18:17:06 -0700331 } elsif ($ARGV[$i] eq 'help') {
332 $cmd = $ARGV[$i+1];
333 usage(0);
Eric Wong3397f9d2006-02-16 01:24:16 -0800334 }
335};
336
Eric Wong540424b2007-12-19 00:31:43 -0800337# make sure we're always running at the top-level working directory
Barry Wardellbc93ceb2013-01-21 01:22:02 +0000338if ($cmd && $cmd =~ /(?:clone|init|multi-init)$/) {
339 $ENV{GIT_DIR} ||= ".git";
Ramkumar Ramachandraa94655d2015-01-10 09:55:11 -0500340 # catch the submodule case
341 if (-f $ENV{GIT_DIR}) {
342 open(my $fh, '<', $ENV{GIT_DIR}) or
343 die "failed to open $ENV{GIT_DIR}: $!\n";
344 $ENV{GIT_DIR} = $1 if <$fh> =~ /^gitdir: (.+)$/;
345 }
Eric Wongc0071ae2016-07-22 20:17:31 +0000346} elsif ($cmd) {
Barry Wardellbc93ceb2013-01-21 01:22:02 +0000347 my ($git_dir, $cdup);
348 git_cmd_try {
349 $git_dir = command_oneline([qw/rev-parse --git-dir/]);
350 } "Unable to find .git directory\n";
351 git_cmd_try {
352 $cdup = command_oneline(qw/rev-parse --show-cdup/);
353 chomp $cdup if ($cdup);
354 $cdup = "." unless ($cdup && length $cdup);
355 } "Already at toplevel, but $git_dir not found\n";
356 $ENV{GIT_DIR} = $git_dir;
357 chdir $cdup or die "Unable to chdir up to '$cdup'\n";
Adam Robenffe256f2008-05-23 16:19:41 +0200358 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wong5253dc32007-02-20 01:36:30 -0800359}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100360
361my %opts = %{$cmd{$cmd}->[2]} if (defined $cmd);
362
Eric Wongc0071ae2016-07-22 20:17:31 +0000363read_git_config(\%opts) if $ENV{GIT_DIR};
Eric Wong222566e2008-08-08 01:41:58 -0700364if ($cmd && ($cmd eq 'log' || $cmd eq 'blame')) {
365 Getopt::Long::Configure('pass_through');
366}
Clemens Buchacher87182b12011-10-03 20:21:36 +0200367my $rv = GetOptions(%opts, 'h|H' => \$_help, 'version|V' => \$_version,
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100368 'minimize-connections' => \$Git::SVN::Migration::_minimize,
369 'id|i=s' => \$Git::SVN::default_ref_id,
370 'svn-remote|remote|R=s' => sub {
371 $Git::SVN::no_reuse_existing = 1;
372 $Git::SVN::default_repo_id = $_[1] });
373exit 1 if (!$rv && $cmd && $cmd ne 'log');
374
375usage(0) if $_help;
376version() if $_version;
377usage(1) unless defined $cmd;
378load_authors() if $_authors;
Mark Lodato36db1ed2009-05-14 21:27:15 -0400379if (defined $_authors_prog) {
Andreas Heiduk9c183982018-03-04 12:22:36 +0100380 my $abs_file = File::Spec->rel2abs($_authors_prog);
381 $_authors_prog = "'" . $abs_file . "'" if -x $abs_file;
Mark Lodato36db1ed2009-05-14 21:27:15 -0400382}
Gustaf Hendebyf4dd3342007-11-24 14:47:56 +0100383
Eric Wong0425ea92007-02-16 18:45:01 -0800384unless ($cmd =~ /^(?:clone|init|multi-init|commit-diff)$/) {
Eric Wong706587f2007-01-18 17:50:01 -0800385 Git::SVN::Migration::migration_check();
386}
Eric Wongecc712d2007-01-31 12:28:10 -0800387Git::SVN::init_vars();
Eric Wongb805b442007-01-22 13:52:04 -0800388eval {
389 Git::SVN::verify_remotes_sanity();
390 $cmd{$cmd}->[0]->(@ARGV);
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +0100391 post_fetch_checkout();
Eric Wongb805b442007-01-22 13:52:04 -0800392};
393fatal $@ if $@;
Eric Wong3397f9d2006-02-16 01:24:16 -0800394exit 0;
395
396####################### primary functions ######################
397sub usage {
398 my $exit = shift || 0;
399 my $fd = $exit ? \*STDERR : \*STDOUT;
400 print $fd <<"";
401git-svn - bidirectional operations between a single Subversion tree and git
David Aguilar1ca6e582013-02-23 16:50:10 -0800402usage: git svn <command> [options] [arguments]\n
Eric Wong448c81b2006-03-03 01:20:09 -0800403
404 print $fd "Available commands:\n" unless $cmd;
Eric Wong3397f9d2006-02-16 01:24:16 -0800405
406 foreach (sort keys %cmd) {
Eric Wong448c81b2006-03-03 01:20:09 -0800407 next if $cmd && $cmd ne $_;
Eric Wonga836a0e2007-02-14 19:34:56 -0800408 next if /^multi-/; # don't show deprecated commands
Eric Wongb203b762006-10-11 14:53:36 -0700409 print $fd ' ',pack('A17',$_),$cmd{$_}->[1],"\n";
Benoit Sigoureaa807bc2007-11-03 19:53:34 +0100410 foreach (sort keys %{$cmd{$_}->[2]}) {
Eric Wong512b6202007-04-03 01:57:08 -0700411 # mixed-case options are for .git/config only
412 next if /[A-Z]/ && /^[a-z]+$/i;
Eric Wong448c81b2006-03-03 01:20:09 -0800413 # prints out arguments as they should be passed:
Eric Wongb8c92ca2006-05-24 01:40:37 -0700414 my $x = s#[:=]s$## ? '<arg>' : s#[:=]i$## ? '<num>' : '';
Eric Wongb203b762006-10-11 14:53:36 -0700415 print $fd ' ' x 21, join(', ', map { length $_ > 1 ?
Eric Wong448c81b2006-03-03 01:20:09 -0800416 "--$_" : "-$_" }
417 split /\|/,$_)," $x\n";
418 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800419 }
420 print $fd <<"";
Eric Wong448c81b2006-03-03 01:20:09 -0800421\nGIT_SVN_ID may be set in the environment or via the --id/-i switch to an
422arbitrary identifier if you're tracking multiple SVN branches/repositories in
423one git repository and want to keep them separate. See git-svn(1) for more
424information.
Eric Wong3397f9d2006-02-16 01:24:16 -0800425
426 exit $exit;
427}
428
Eric Wong551ce282006-02-20 10:57:29 -0800429sub version {
Michael J Gruberb0779242010-03-04 11:23:53 +0100430 ::_req_svn();
Eric Wong7d60ab22006-12-28 01:16:20 -0800431 print "git-svn version $VERSION (svn $SVN::Core::VERSION)\n";
Eric Wong551ce282006-02-20 10:57:29 -0800432 exit 0;
433}
434
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200435sub ask {
436 my ($prompt, %arg) = @_;
437 my $valid_re = $arg{valid_re};
438 my $default = $arg{default};
439 my $resp;
440 my $i = 0;
Eric Wong30d45f72014-09-14 07:38:29 +0000441 term_init() unless $term;
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200442
443 if ( !( defined($term->IN)
444 && defined( fileno($term->IN) )
445 && defined( $term->OUT )
446 && defined( fileno($term->OUT) ) ) ){
447 return defined($default) ? $default : undef;
448 }
449
450 while ($i++ < 10) {
451 $resp = $term->readline($prompt);
452 if (!defined $resp) { # EOF
453 print "\n";
454 return defined $default ? $default : undef;
455 }
456 if ($resp eq '' and defined $default) {
457 return $default;
458 }
459 if (!defined $valid_re or $resp =~ /$valid_re/) {
460 return $resp;
461 }
462 }
463 return undef;
464}
465
Eric Wong8164b652007-01-11 15:35:55 -0800466sub do_git_init_db {
467 unless (-d $ENV{GIT_DIR}) {
468 my @init_db = ('init');
469 push @init_db, "--template=$_template" if defined $_template;
Eric Wongdadc6d22007-02-14 12:27:41 -0800470 if (defined $_shared) {
471 if ($_shared =~ /[a-z]/) {
472 push @init_db, "--shared=$_shared";
473 } else {
474 push @init_db, "--shared";
475 }
476 }
Eric Wong8164b652007-01-11 15:35:55 -0800477 command_noisy(@init_db);
Adam Robenffe256f2008-05-23 16:19:41 +0200478 $_repository = Git->repository(Repository => ".git");
Eric Wong8164b652007-01-11 15:35:55 -0800479 }
Eric Wong0dfaf0a2007-02-18 02:34:09 -0800480 my $set;
481 my $pfx = "svn-remote.$Git::SVN::default_repo_id";
482 foreach my $i (keys %icv) {
483 die "'$set' and '$i' cannot both be set\n" if $set;
484 next unless defined $icv{$i};
485 command_noisy('config', "$pfx.$i", $icv{$i});
486 $set = $i;
487 }
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500488 my $ignore_paths_regex = \$Git::SVN::Fetcher::_ignore_regex;
Michael Olsoncdb51a12011-10-10 16:27:37 -0700489 command_noisy('config', "$pfx.ignore-paths", $$ignore_paths_regex)
490 if defined $$ignore_paths_regex;
Paul Walmsleya7b10232013-05-04 00:10:18 +0100491 my $include_paths_regex = \$Git::SVN::Fetcher::_include_regex;
492 command_noisy('config', "$pfx.include-paths", $$include_paths_regex)
493 if defined $$include_paths_regex;
Michael Olsoncdb51a12011-10-10 16:27:37 -0700494 my $ignore_refs_regex = \$Git::SVN::Ra::_ignore_refs_regex;
495 command_noisy('config', "$pfx.ignore-refs", $$ignore_refs_regex)
496 if defined $$ignore_refs_regex;
Ray Chen40a15302011-07-20 18:37:26 -0400497
Jonathan Nieder72827aa2012-05-28 02:00:46 -0500498 if (defined $Git::SVN::Fetcher::_preserve_empty_dirs) {
499 my $fname = \$Git::SVN::Fetcher::_placeholder_filename;
Ray Chen40a15302011-07-20 18:37:26 -0400500 command_noisy('config', "$pfx.preserve-empty-dirs", 'true');
501 command_noisy('config', "$pfx.placeholder-filename", $$fname);
502 }
brian m. carlson66eadd12020-06-22 18:04:15 +0000503 load_object_format();
Eric Wong8164b652007-01-11 15:35:55 -0800504}
505
Eric Wongdadc6d22007-02-14 12:27:41 -0800506sub init_subdir {
507 my $repo_path = shift or return;
508 mkpath([$repo_path]) unless -d $repo_path;
509 chdir $repo_path or die "Couldn't chdir to $repo_path: $!\n";
Eric Wongf30603f2007-02-23 01:26:26 -0800510 $ENV{GIT_DIR} = '.git';
Adam Robenffe256f2008-05-23 16:19:41 +0200511 $_repository = Git->repository(Repository => $ENV{GIT_DIR});
Eric Wongdadc6d22007-02-14 12:27:41 -0800512}
513
Eric Wong0425ea92007-02-16 18:45:01 -0800514sub cmd_clone {
515 my ($url, $path) = @_;
Christopher Layne19e95422016-07-03 05:39:23 +0000516 if (!$url) {
517 die "SVN repository location required ",
518 "as a command-line argument\n";
519 } elsif (!defined $path &&
Marc Branchaud62244062009-06-23 13:02:08 -0400520 (defined $_trunk || @_branches || @_tags ||
martin f. krafft8f728fb2007-07-14 11:25:28 +0200521 defined $_stdlayout) &&
Eric Wong0425ea92007-02-16 18:45:01 -0800522 $url !~ m#^[a-z\+]+://#) {
523 $path = $url;
524 }
Eric Wong0425ea92007-02-16 18:45:01 -0800525 $path = basename($url) if !defined $path || !length $path;
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500526 my $authors_absolute = $_authors ? File::Spec->rel2abs($_authors) : "";
Eric Wongf30603f2007-02-23 01:26:26 -0800527 cmd_init($url, $path);
Alex Vandiver2bc35dc2009-12-08 15:54:10 -0500528 command_oneline('config', 'svn.authorsfile', $authors_absolute)
529 if $_authors;
Alex Vandiverf5841502009-12-08 15:54:11 -0500530 Git::SVN::fetch_all($Git::SVN::default_repo_id);
Eric Wong0425ea92007-02-16 18:45:01 -0800531}
532
Eric Wongd2866f92007-01-11 12:26:16 -0800533sub cmd_init {
martin f. krafft8f728fb2007-07-14 11:25:28 +0200534 if (defined $_stdlayout) {
535 $_trunk = 'trunk' if (!defined $_trunk);
Marc Branchaud62244062009-06-23 13:02:08 -0400536 @_tags = 'tags' if (! @_tags);
537 @_branches = 'branches' if (! @_branches);
martin f. krafft8f728fb2007-07-14 11:25:28 +0200538 }
Marc Branchaud62244062009-06-23 13:02:08 -0400539 if (defined $_trunk || @_branches || @_tags) {
Eric Wongdadc6d22007-02-14 12:27:41 -0800540 return cmd_multi_init(@_);
Eric Wong03e0ea82006-06-30 21:42:53 -0700541 }
Eric Wongdadc6d22007-02-14 12:27:41 -0800542 my $url = shift or die "SVN repository location required ",
543 "as a command-line argument\n";
Ulrich Dangel50ff2362009-06-26 16:52:09 +0200544 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -0800545 init_subdir(@_);
Eric Wong8164b652007-01-11 15:35:55 -0800546 do_git_init_db();
Eric Wong03e0ea82006-06-30 21:42:53 -0700547
Eric Wong6b488292009-07-25 00:00:50 -0700548 if ($Git::SVN::_minimize_url eq 'unset') {
549 $Git::SVN::_minimize_url = 0;
550 }
551
Eric Wong706587f2007-01-18 17:50:01 -0800552 Git::SVN->init($url);
Eric Wong3397f9d2006-02-16 01:24:16 -0800553}
554
Eric Wong2a3240b2007-01-04 18:09:56 -0800555sub cmd_fetch {
Eric Wonge98671e2007-02-14 02:21:19 -0800556 if (grep /^\d+=./, @_) {
557 die "'<rev>=<commit>' fetch arguments are ",
558 "no longer supported.\n";
Eric Wong07a1c952007-01-22 15:47:41 -0800559 }
Eric Wonge98671e2007-02-14 02:21:19 -0800560 my ($remote) = @_;
561 if (@_ > 1) {
David Aguilar0b670ab2013-02-24 14:48:38 -0800562 die "usage: $0 fetch [--all] [--parent] [svn-remote]\n";
Eric Wonge98671e2007-02-14 02:21:19 -0800563 }
Eric Wong4d0157d2009-11-22 12:37:06 -0800564 $Git::SVN::no_reuse_existing = undef;
Jason Merrillc2abd832009-04-06 16:37:59 -0400565 if ($_fetch_parent) {
566 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
567 unless ($gs) {
568 die "Unable to determine upstream SVN information from ",
569 "working tree history\n";
570 }
571 # just fetch, don't checkout.
572 $_no_checkout = 'true';
573 $_fetch_all ? $gs->fetch_all : $gs->fetch;
574 } elsif ($_fetch_all) {
Eric Wonge98671e2007-02-14 02:21:19 -0800575 cmd_multi_fetch();
576 } else {
Jason Merrillc2abd832009-04-06 16:37:59 -0400577 $remote ||= $Git::SVN::default_repo_id;
Eric Wonge98671e2007-02-14 02:21:19 -0800578 Git::SVN::fetch_all($remote, Git::SVN::read_all_remotes());
Eric Wong1c8443b2007-01-14 02:17:00 -0800579 }
Eric Wong2a3240b2007-01-04 18:09:56 -0800580}
581
Eric Wong1ce255d2007-01-14 23:21:16 -0800582sub cmd_set_tree {
Eric Wong3397f9d2006-02-16 01:24:16 -0800583 my (@commits) = @_;
584 if ($_stdin || !@commits) {
585 print "Reading from stdin...\n";
586 @commits = ();
587 while (<STDIN>) {
brian m. carlson9ab33152020-06-22 18:04:12 +0000588 if (/\b($oid_short)\b/o) {
Eric Wong3397f9d2006-02-16 01:24:16 -0800589 unshift @commits, $1;
590 }
591 }
592 }
593 my @revs;
Eric Wong8de010a2006-02-20 10:57:26 -0800594 foreach my $c (@commits) {
Eric Wongaef4e922006-12-15 10:59:54 -0800595 my @tmp = command('rev-parse',$c);
Eric Wong8de010a2006-02-20 10:57:26 -0800596 if (scalar @tmp == 1) {
597 push @revs, $tmp[0];
598 } elsif (scalar @tmp > 1) {
Eric Wongaef4e922006-12-15 10:59:54 -0800599 push @revs, reverse(command('rev-list',@tmp));
Eric Wong8de010a2006-02-20 10:57:26 -0800600 } else {
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200601 fatal "Failed to rev-parse $c";
Eric Wong8de010a2006-02-20 10:57:26 -0800602 }
Eric Wong3397f9d2006-02-16 01:24:16 -0800603 }
Eric Wong1ce255d2007-01-14 23:21:16 -0800604 my $gs = Git::SVN->new;
605 my ($r_last, $cmt_last) = $gs->last_rev_commit;
606 $gs->fetch;
Eric Wong97f69872007-01-25 11:53:13 -0800607 if (defined $gs->{last_rev} && $r_last != $gs->{last_rev}) {
Eric Wong1ce255d2007-01-14 23:21:16 -0800608 fatal "There are new revisions that were fetched ",
609 "and need to be merged (or acknowledged) ",
610 "before committing.\nlast rev: $r_last\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200611 " current: $gs->{last_rev}";
Eric Wong1ce255d2007-01-14 23:21:16 -0800612 }
613 $gs->set_tree($_) foreach @revs;
Eric Wonga5e0ced2006-06-12 15:23:48 -0700614 print "Done committing ",scalar @revs," revisions to SVN\n";
Eric Wong3157dd92007-12-13 08:27:34 -0800615 unlink $gs->{index};
Eric Wonga5e0ced2006-06-12 15:23:48 -0700616}
617
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400618sub split_merge_info_range {
619 my ($range) = @_;
620 if ($range =~ /(\d+)-(\d+)/) {
621 return (int($1), int($2));
622 } else {
623 return (int($range), int($range));
624 }
625}
626
627sub combine_ranges {
628 my ($in) = @_;
629
630 my @fnums = ();
631 my @arr = split(/,/, $in);
632 for my $element (@arr) {
633 my ($start, $end) = split_merge_info_range($element);
634 push @fnums, $start;
635 }
636
637 my @sorted = @arr [ sort {
638 $fnums[$a] <=> $fnums[$b]
639 } 0..$#arr ];
640
641 my @return = ();
642 my $last = -1;
643 my $first = -1;
644 for my $element (@sorted) {
645 my ($start, $end) = split_merge_info_range($element);
646
647 if ($last == -1) {
648 $first = $start;
649 $last = $end;
650 next;
651 }
652 if ($start <= $last+1) {
653 if ($end > $last) {
654 $last = $end;
655 }
656 next;
657 }
658 if ($first == $last) {
659 push @return, "$first";
660 } else {
661 push @return, "$first-$last";
662 }
663 $first = $start;
664 $last = $end;
665 }
666
667 if ($first != -1) {
668 if ($first == $last) {
669 push @return, "$first";
670 } else {
671 push @return, "$first-$last";
672 }
673 }
674
675 return join(',', @return);
676}
677
678sub merge_revs_into_hash {
679 my ($hash, $minfo) = @_;
680 my @lines = split(' ', $minfo);
681
682 for my $line (@lines) {
683 my ($branchpath, $revs) = split(/:/, $line);
684
685 if (exists($hash->{$branchpath})) {
686 # Merge the two revision sets
687 my $combined = "$hash->{$branchpath},$revs";
688 $hash->{$branchpath} = combine_ranges($combined);
689 } else {
690 # Just do range combining for consolidation
691 $hash->{$branchpath} = combine_ranges($revs);
692 }
693 }
694}
695
696sub merge_merge_info {
Michael Contrerase234ac92013-03-30 18:06:42 -0400697 my ($mergeinfo_one, $mergeinfo_two, $ignore_branch) = @_;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400698 my %result_hash = ();
699
700 merge_revs_into_hash(\%result_hash, $mergeinfo_one);
701 merge_revs_into_hash(\%result_hash, $mergeinfo_two);
702
Michael Contrerase234ac92013-03-30 18:06:42 -0400703 delete $result_hash{$ignore_branch} if $ignore_branch;
704
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400705 my $result = '';
706 # Sort below is for consistency's sake
707 for my $branchname (sort keys(%result_hash)) {
708 my $revlist = $result_hash{$branchname};
709 $result .= "$branchname:$revlist\n"
710 }
711 return $result;
712}
713
714sub populate_merge_info {
715 my ($d, $gs, $uuid, $linear_refs, $rewritten_parent) = @_;
716
717 my %parentshash;
718 read_commit_parents(\%parentshash, $d);
719 my @parents = @{$parentshash{$d}};
720 if ($#parents > 0) {
721 # Merge commit
722 my $all_parents_ok = 1;
723 my $aggregate_mergeinfo = '';
724 my $rooturl = $gs->repos_root;
Michael Contrerase234ac92013-03-30 18:06:42 -0400725 my ($target_branch) = $gs->full_pushurl =~ /^\Q$rooturl\E(.*)/;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400726
727 if (defined($rewritten_parent)) {
728 # Replace first parent with newly-rewritten version
729 shift @parents;
730 unshift @parents, $rewritten_parent;
731 }
732
733 foreach my $parent (@parents) {
734 my ($branchurl, $svnrev, $paruuid) =
735 cmt_metadata($parent);
736
737 unless (defined($svnrev)) {
738 # Should have been caught be preflight check
739 fatal "merge commit $d has ancestor $parent, but that change "
740 ."does not have git-svn metadata!";
741 }
Ted Percival0e7e30f2011-10-31 16:37:12 -0600742 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400743 fatal "commit $parent git-svn metadata changed mid-run!";
744 }
745 my $branchpath = $1;
746
747 my $ra = Git::SVN::Ra->new($branchurl);
748 my (undef, undef, $props) =
749 $ra->get_dir(canonicalize_path("."), $svnrev);
750 my $par_mergeinfo = $props->{'svn:mergeinfo'};
751 unless (defined $par_mergeinfo) {
752 $par_mergeinfo = '';
753 }
754 # Merge previous mergeinfo values
755 $aggregate_mergeinfo =
756 merge_merge_info($aggregate_mergeinfo,
Michael Contrerase234ac92013-03-30 18:06:42 -0400757 $par_mergeinfo,
758 $target_branch);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400759
760 next if $parent eq $parents[0]; # Skip first parent
761 # Add new changes being placed in tree by merge
762 my @cmd = (qw/rev-list --reverse/,
763 $parent, qw/--not/);
764 foreach my $par (@parents) {
765 unless ($par eq $parent) {
766 push @cmd, $par;
767 }
768 }
769 my @revsin = ();
770 my ($revlist, $ctx) = command_output_pipe(@cmd);
771 while (<$revlist>) {
772 my $irev = $_;
773 chomp $irev;
774 my (undef, $csvnrev, undef) =
775 cmt_metadata($irev);
776 unless (defined $csvnrev) {
777 # A child is missing SVN annotations...
778 # this might be OK, or might not be.
779 warn "W:child $irev is merged into revision "
780 ."$d but does not have git-svn metadata. "
781 ."This means git-svn cannot determine the "
782 ."svn revision numbers to place into the "
783 ."svn:mergeinfo property. You must ensure "
784 ."a branch is entirely committed to "
785 ."SVN before merging it in order for "
786 ."svn:mergeinfo population to function "
787 ."properly";
788 }
789 push @revsin, $csvnrev;
790 }
791 command_close_pipe($revlist, $ctx);
792
793 last unless $all_parents_ok;
794
795 # We now have a list of all SVN revnos which are
796 # merged by this particular parent. Integrate them.
797 next if $#revsin == -1;
798 my $newmergeinfo = "$branchpath:" . join(',', @revsin);
799 $aggregate_mergeinfo =
800 merge_merge_info($aggregate_mergeinfo,
Michael Contrerase234ac92013-03-30 18:06:42 -0400801 $newmergeinfo,
802 $target_branch);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400803 }
804 if ($all_parents_ok and $aggregate_mergeinfo) {
805 return $aggregate_mergeinfo;
806 }
807 }
808
809 return undef;
810}
811
Robert Luberdae48fb752012-08-08 07:35:00 +0200812sub dcommit_rebase {
813 my ($is_last, $current, $fetched_ref, $svn_error) = @_;
814 my @diff;
815
816 if ($svn_error) {
817 print STDERR "\nERROR from SVN:\n",
818 $svn_error->expanded_message, "\n";
819 }
820 unless ($_no_rebase) {
821 # we always want to rebase against the current HEAD,
822 # not any head that was passed to us
823 @diff = command('diff-tree', $current,
824 $fetched_ref, '--');
825 my @finish;
826 if (@diff) {
827 @finish = rebase_cmd();
828 print STDERR "W: $current and ", $fetched_ref,
829 " differ, using @finish:\n",
830 join("\n", @diff), "\n";
831 } elsif ($is_last) {
832 print "No changes between ", $current, " and ",
833 $fetched_ref,
834 "\nResetting to the latest ",
835 $fetched_ref, "\n";
836 @finish = qw/reset --mixed/;
837 }
838 command_noisy(@finish, $fetched_ref) if @finish;
839 }
840 if ($svn_error) {
841 die "ERROR: Not all changes have been committed into SVN"
842 .($_no_rebase ? ".\n" : ", however the committed\n"
843 ."ones (if any) seem to be successfully integrated "
844 ."into the working tree.\n")
845 ."Please see the above messages for details.\n";
846 }
847 return @diff;
848}
849
Eric Wongd7ad3be2007-01-14 03:14:28 -0800850sub cmd_dcommit {
851 my $head = shift;
David D. Kilzer181264a2010-08-02 12:58:19 -0700852 command_noisy(qw/update-index --refresh/);
Slava Kardakov9926f662013-06-05 11:31:27 -0700853 git_cmd_try { command_oneline(qw/diff-index --quiet HEAD --/) }
David Reiss826a9332007-11-13 13:47:26 -0800854 'Cannot dcommit with a dirty index. Commit your changes first, '
Benoit Sigourec8cfa3e2007-11-11 19:41:41 +0100855 . "or stash them with `git stash'.\n";
Eric Wongd7ad3be2007-01-14 03:14:28 -0800856 $head ||= 'HEAD';
Thomas Rast5eec27e2009-05-29 17:09:42 +0200857
858 my $old_head;
859 if ($head ne 'HEAD') {
860 $old_head = eval {
861 command_oneline([qw/symbolic-ref -q HEAD/])
862 };
863 if ($old_head) {
864 $old_head =~ s{^refs/heads/}{};
865 } else {
866 $old_head = eval { command_oneline(qw/rev-parse HEAD/) };
867 }
868 command(['checkout', $head], STDERR => 0);
869 }
870
Eric Wonga8ae2622007-02-13 14:22:11 -0800871 my @refs;
Thomas Rast5eec27e2009-05-29 17:09:42 +0200872 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD', \@refs);
Thomas Rast2cb61102008-08-31 15:50:59 +0200873 unless ($gs) {
874 die "Unable to determine upstream SVN information from ",
875 "$head history.\nPerhaps the repository is empty.";
876 }
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100877
878 if (defined $_commit_url) {
879 $url = $_commit_url;
880 } else {
881 $url = eval { command_oneline('config', '--get',
882 "svn-remote.$gs->{repo_id}.commiturl") };
883 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -0400884 $url = $gs->full_pushurl
Peter Oberndorfer0df84052009-02-23 12:02:53 +0100885 }
886 }
887
Eric Wongba24e742008-08-07 02:06:16 -0700888 my $last_rev = $_revision if defined $_revision;
Matthieu Moy59b0c242008-04-24 20:06:36 +0200889 if ($url) {
890 print "Committing to $url ...\n";
891 }
Eric Wong733a65a2007-06-13 02:23:28 -0700892 my ($linear_refs, $parents) = linearize_history($gs, \@refs);
Eric Wong751eb392007-08-31 18:16:12 -0700893 if ($_no_rebase && scalar(@$linear_refs) > 1) {
894 warn "Attempting to commit more than one change while ",
895 "--no-rebase is enabled.\n",
896 "If these changes depend on each other, re-running ",
Eric Wong7dfa16b2008-01-02 10:09:49 -0800897 "without --no-rebase may be required."
Eric Wong751eb392007-08-31 18:16:12 -0700898 }
Frédéric Heitzmannafd7f1e2011-09-16 23:02:01 +0200899
900 if (defined $_interactive){
901 my $ask_default = "y";
902 foreach my $d (@$linear_refs){
903 my ($fh, $ctx) = command_output_pipe(qw(show --summary), "$d");
904 while (<$fh>){
905 print $_;
906 }
907 command_close_pipe($fh, $ctx);
908 $_ = ask("Commit this patch to SVN? ([y]es (default)|[n]o|[q]uit|[a]ll): ",
909 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
910 default => $ask_default);
911 die "Commit this patch reply required" unless defined $_;
912 if (/^[nq]/i) {
913 exit(0);
914 } elsif (/^a/i) {
915 last;
916 }
917 }
918 }
919
Eric Wong711521e2008-08-20 00:30:06 -0700920 my $expect_url = $url;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400921
922 my $push_merge_info = eval {
923 command_oneline(qw/config --get svn.pushmergeinfo/)
924 };
925 if (not defined($push_merge_info)
926 or $push_merge_info eq "false"
927 or $push_merge_info eq "no"
928 or $push_merge_info eq "never") {
929 $push_merge_info = 0;
930 }
931
932 unless (defined($_merge_info) || ! $push_merge_info) {
933 # Preflight check of changes to ensure no issues with mergeinfo
934 # This includes check for uncommitted-to-SVN parents
935 # (other than the first parent, which we will handle),
936 # information from different SVN repos, and paths
937 # which are not underneath this repository root.
938 my $rooturl = $gs->repos_root;
Jason Merrill8aaed892017-09-15 17:46:53 -0400939 Git::SVN::remove_username($rooturl);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400940 foreach my $d (@$linear_refs) {
941 my %parentshash;
942 read_commit_parents(\%parentshash, $d);
943 my @realparents = @{$parentshash{$d}};
944 if ($#realparents > 0) {
945 # Merge commit
946 shift @realparents; # Remove/ignore first parent
947 foreach my $parent (@realparents) {
948 my ($branchurl, $svnrev, $paruuid) = cmt_metadata($parent);
949 unless (defined $paruuid) {
950 # A parent is missing SVN annotations...
951 # abort the whole operation.
952 fatal "$parent is merged into revision $d, "
953 ."but does not have git-svn metadata. "
954 ."Either dcommit the branch or use a "
955 ."local cherry-pick, FF merge, or rebase "
956 ."instead of an explicit merge commit.";
957 }
958
959 unless ($paruuid eq $uuid) {
960 # Parent has SVN metadata from different repository
961 fatal "merge parent $parent for change $d has "
962 ."git-svn uuid $paruuid, while current change "
963 ."has uuid $uuid!";
964 }
965
Ted Percival0e7e30f2011-10-31 16:37:12 -0600966 unless ($branchurl =~ /^\Q$rooturl\E(.*)/) {
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400967 # This branch is very strange indeed.
968 fatal "merge parent $parent for $d is on branch "
969 ."$branchurl, which is not under the "
970 ."git-svn root $rooturl!";
971 }
972 }
973 }
974 }
975 }
976
977 my $rewritten_parent;
Robert Luberdae48fb752012-08-08 07:35:00 +0200978 my $current_head = command_oneline(qw/rev-parse HEAD/);
Eric Wong711521e2008-08-20 00:30:06 -0700979 Git::SVN::remove_username($expect_url);
Bryan Jacobs98c4ab32011-08-31 12:48:39 -0400980 if (defined($_merge_info)) {
981 $_merge_info =~ tr{ }{\n};
982 }
Eric Wongc74d9ac2007-11-05 03:21:47 -0800983 while (1) {
984 my $d = shift @$linear_refs or last;
Eric Wong45bf4732006-11-09 01:19:37 -0800985 unless (defined $last_rev) {
986 (undef, $last_rev, undef) = cmt_metadata("$d~1");
987 unless (defined $last_rev) {
Eric Wongd7ad3be2007-01-14 03:14:28 -0800988 fatal "Unable to extract revision information ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +0200989 "from commit $d~1";
Eric Wong45bf4732006-11-09 01:19:37 -0800990 }
991 }
Eric Wongb22d4492006-08-26 00:01:23 -0700992 if ($_dry_run) {
993 print "diff-tree $d~1 $d\n";
994 } else {
Eric Wong751eb392007-08-31 18:16:12 -0700995 my $cmt_rev;
Bryan Jacobs1e5814f2011-09-07 13:36:05 -0400996
997 unless (defined($_merge_info) || ! $push_merge_info) {
998 $_merge_info = populate_merge_info($d, $gs,
999 $uuid,
1000 $linear_refs,
1001 $rewritten_parent);
1002 }
1003
Eric Wongd7ad3be2007-01-14 03:14:28 -08001004 my %ed_opts = ( r => $last_rev,
Eric Wong61395352007-01-27 14:33:08 -08001005 log => get_commit_entry($d)->{log},
Eric Wongba24e742008-08-07 02:06:16 -07001006 ra => Git::SVN::Ra->new($url),
Konstantin V. Arkhipov3caf3202007-11-14 03:52:02 +03001007 config => SVN::Core::config_get_config(
1008 $Git::SVN::Ra::config_dir
1009 ),
Eric Wong61395352007-01-27 14:33:08 -08001010 tree_a => "$d~1",
1011 tree_b => $d,
1012 editor_cb => sub {
1013 print "Committed r$_[0]\n";
Eric Wong751eb392007-08-31 18:16:12 -07001014 $cmt_rev = $_[0];
1015 },
Steven Walter6abd9332010-09-24 23:51:50 -04001016 mergeinfo => $_merge_info,
Eric Wonga8ae2622007-02-13 14:22:11 -08001017 svn_path => '');
Robert Luberdae48fb752012-08-08 07:35:00 +02001018
1019 my $err_handler = $SVN::Error::handler;
1020 $SVN::Error::handler = sub {
1021 my $err = shift;
1022 dcommit_rebase(1, $current_head, $gs->refname,
1023 $err);
1024 };
1025
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001026 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
Eric Wongd7ad3be2007-01-14 03:14:28 -08001027 print "No changes\n$d~1 == $d\n";
Eric Wong733a65a2007-06-13 02:23:28 -07001028 } elsif ($parents->{$d} && @{$parents->{$d}}) {
Eric Wong751eb392007-08-31 18:16:12 -07001029 $gs->{inject_parents_dcommit}->{$cmt_rev} =
Eric Wong733a65a2007-06-13 02:23:28 -07001030 $parents->{$d};
Eric Wongd7ad3be2007-01-14 03:14:28 -08001031 }
Eric Wong751eb392007-08-31 18:16:12 -07001032 $_fetch_all ? $gs->fetch_all : $gs->fetch;
Robert Luberdae48fb752012-08-08 07:35:00 +02001033 $SVN::Error::handler = $err_handler;
Eric Wong7dfa16b2008-01-02 10:09:49 -08001034 $last_rev = $cmt_rev;
Eric Wong751eb392007-08-31 18:16:12 -07001035 next if $_no_rebase;
1036
Robert Luberdae48fb752012-08-08 07:35:00 +02001037 my @diff = dcommit_rebase(@$linear_refs == 0, $d,
1038 $gs->refname, undef);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -04001039
Robert Luberdae48fb752012-08-08 07:35:00 +02001040 $rewritten_parent = command_oneline(qw/rev-parse/,
1041 $gs->refname);
Bryan Jacobs1e5814f2011-09-07 13:36:05 -04001042
Eric Wongc74d9ac2007-11-05 03:21:47 -08001043 if (@diff) {
Robert Luberdae48fb752012-08-08 07:35:00 +02001044 $current_head = command_oneline(qw/rev-parse
1045 HEAD/);
Eric Wongc74d9ac2007-11-05 03:21:47 -08001046 @refs = ();
1047 my ($url_, $rev_, $uuid_, $gs_) =
Thomas Rast5eec27e2009-05-29 17:09:42 +02001048 working_head_info('HEAD', \@refs);
Eric Wongc74d9ac2007-11-05 03:21:47 -08001049 my ($linear_refs_, $parents_) =
1050 linearize_history($gs_, \@refs);
1051 if (scalar(@$linear_refs) !=
1052 scalar(@$linear_refs_)) {
1053 fatal "# of revisions changed ",
1054 "\nbefore:\n",
1055 join("\n", @$linear_refs),
1056 "\n\nafter:\n",
1057 join("\n", @$linear_refs_), "\n",
1058 'If you are attempting to commit ',
1059 "merges, try running:\n\t",
1060 'git rebase --interactive',
Johannes Schindelinea8b7be2019-11-22 22:59:29 +00001061 '--rebase-merges ',
Eric Wongc74d9ac2007-11-05 03:21:47 -08001062 $gs->refname,
1063 "\nBefore dcommitting";
1064 }
Eric Wong711521e2008-08-20 00:30:06 -07001065 if ($url_ ne $expect_url) {
Alexander Gavrilovc03c1f72009-10-09 11:01:04 +04001066 if ($url_ eq $gs->metadata_url) {
1067 print
1068 "Accepting rewritten URL:",
1069 " $url_\n";
1070 } else {
1071 fatal
1072 "URL mismatch after rebase:",
1073 " $url_ != $expect_url";
1074 }
Eric Wongc74d9ac2007-11-05 03:21:47 -08001075 }
1076 if ($uuid_ ne $uuid) {
1077 fatal "uuid mismatch after rebase: ",
1078 "$uuid_ != $uuid";
1079 }
1080 # remap parents
1081 my (%p, @l, $i);
1082 for ($i = 0; $i < scalar @$linear_refs; $i++) {
1083 my $new = $linear_refs_->[$i] or next;
1084 $p{$new} =
1085 $parents->{$linear_refs->[$i]};
1086 push @l, $new;
1087 }
1088 $parents = \%p;
1089 $linear_refs = \@l;
Robert Luberdae48fb752012-08-08 07:35:00 +02001090 undef $last_rev;
Eric Wongc74d9ac2007-11-05 03:21:47 -08001091 }
Eric Wongb22d4492006-08-26 00:01:23 -07001092 }
1093 }
Thomas Rast5eec27e2009-05-29 17:09:42 +02001094
1095 if ($old_head) {
1096 my $new_head = command_oneline(qw/rev-parse HEAD/);
1097 my $new_is_symbolic = eval {
1098 command_oneline(qw/symbolic-ref -q HEAD/);
1099 };
1100 if ($new_is_symbolic) {
1101 print "dcommitted the branch ", $head, "\n";
1102 } else {
1103 print "dcommitted on a detached HEAD because you gave ",
1104 "a revision argument.\n",
1105 "The rewritten commit is: ", $new_head, "\n";
1106 }
1107 command(['checkout', $old_head], STDERR => 0);
1108 }
1109
Eric Wong3157dd92007-12-13 08:27:34 -08001110 unlink $gs->{index};
Eric Wongb22d4492006-08-26 00:01:23 -07001111}
1112
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001113sub cmd_branch {
1114 my ($branch_name, $head) = @_;
1115
1116 unless (defined $branch_name && length $branch_name) {
1117 die(($_tag ? "tag" : "branch") . " name required\n");
1118 }
1119 $head ||= 'HEAD';
1120
Eric Wong150d38c2009-12-22 22:40:18 -08001121 my (undef, $rev, undef, $gs) = working_head_info($head);
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04001122 my $src = $gs->full_pushurl;
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001123
Deskin Millera0fbc872008-12-01 21:43:00 -05001124 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
Marc Branchaud62244062009-06-23 13:02:08 -04001125 my $allglobs = $remote->{ $_tag ? 'tags' : 'branches' };
1126 my $glob;
1127 if ($#{$allglobs} == 0) {
1128 $glob = $allglobs->[0];
1129 } else {
1130 unless(defined $_branch_dest) {
1131 die "Multiple ",
1132 $_tag ? "tag" : "branch",
1133 " paths defined for Subversion repository.\n",
1134 "You must specify where you want to create the ",
1135 $_tag ? "tag" : "branch",
1136 " with the --destination argument.\n";
1137 }
1138 foreach my $g (@{$allglobs}) {
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001139 my $re = Git::SVN::Editor::glob2pat($g->{path}->{left});
Eric Wongf7050592009-06-25 02:28:15 -07001140 if ($_branch_dest =~ /$re/) {
Marc Branchaud62244062009-06-23 13:02:08 -04001141 $glob = $g;
1142 last;
1143 }
1144 }
1145 unless (defined $glob) {
Eric Wongeaa14ff2009-07-25 01:36:06 -07001146 my $dest_re = qr/\b\Q$_branch_dest\E\b/;
1147 foreach my $g (@{$allglobs}) {
1148 $g->{path}->{left} =~ /$dest_re/ or next;
1149 if (defined $glob) {
1150 die "Ambiguous destination: ",
1151 $_branch_dest, "\nmatches both '",
1152 $glob->{path}->{left}, "' and '",
1153 $g->{path}->{left}, "'\n";
1154 }
1155 $glob = $g;
1156 }
1157 unless (defined $glob) {
1158 die "Unknown ",
1159 $_tag ? "tag" : "branch",
1160 " destination $_branch_dest\n";
1161 }
Marc Branchaud62244062009-06-23 13:02:08 -04001162 }
1163 }
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001164 my ($lft, $rgt) = @{ $glob->{path} }{qw/left right/};
Igor Mironov99bacd62010-01-12 03:21:23 +11001165 my $url;
1166 if (defined $_commit_url) {
1167 $url = $_commit_url;
1168 } else {
1169 $url = eval { command_oneline('config', '--get',
1170 "svn-remote.$gs->{repo_id}.commiturl") };
1171 if (!$url) {
Alejandro R. Sedeño12a296b2011-04-08 10:57:54 -04001172 $url = $remote->{pushurl} || $remote->{url};
Igor Mironov99bacd62010-01-12 03:21:23 +11001173 }
1174 }
1175 my $dst = join '/', $url, $lft, $branch_name, ($rgt || ());
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001176
Igor Mironova83b91e2010-01-12 03:20:43 +11001177 if ($dst =~ /^https:/ && $src =~ /^http:/) {
1178 $src=~s/^http:/https:/;
1179 }
1180
josh robbd32fad22010-02-24 16:13:50 +13001181 ::_req_svn();
Eric Wong47092c12015-01-15 08:54:22 +00001182 require SVN::Client;
josh robbd32fad22010-02-24 16:13:50 +13001183
Hiroshi Shirosakie0688e92017-03-06 14:59:07 +09001184 my ($config, $baton, undef) = Git::SVN::Ra::prepare_config_once();
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001185 my $ctx = SVN::Client->new(
Hiroshi Shirosakie0688e92017-03-06 14:59:07 +09001186 auth => $baton,
1187 config => $config,
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001188 log_msg => sub {
1189 ${ $_[0] } = defined $_message
1190 ? $_message
1191 : 'Create ' . ($_tag ? 'tag ' : 'branch ' )
1192 . $branch_name;
1193 },
1194 );
1195
1196 eval {
1197 $ctx->ls($dst, 'HEAD', 0);
1198 } and die "branch ${branch_name} already exists\n";
1199
Tobias Schultef4f4c7f2013-05-15 22:14:43 +02001200 if ($_parents) {
1201 mk_parent_dirs($ctx, $dst);
1202 }
1203
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001204 print "Copying ${src} at r${rev} to ${dst}...\n";
1205 $ctx->copy($src, $rev, $dst)
1206 unless $_dry_run;
1207
Eric Wong7f6f75e2018-01-29 23:11:07 +00001208 # Release resources held by ctx before creating another SVN::Ra
1209 # so destruction is orderly. This seems necessary with SVN 1.9.5
1210 # to avoid segfaults.
1211 $ctx = undef;
1212
Florian Ragwitz5de70ef2008-10-04 19:35:17 -07001213 $gs->fetch_all;
1214}
1215
Tobias Schultef4f4c7f2013-05-15 22:14:43 +02001216sub mk_parent_dirs {
1217 my ($ctx, $parent) = @_;
1218 $parent =~ s{/[^/]*$}{};
1219
1220 if (!eval{$ctx->ls($parent, 'HEAD', 0)}) {
1221 mk_parent_dirs($ctx, $parent);
1222 print "Creating parent folder ${parent} ...\n";
1223 $ctx->mkdir($parent) unless $_dry_run;
1224 }
1225}
1226
Adam Roben26e60162007-04-27 11:57:53 -07001227sub cmd_find_rev {
Marc-Andre Lureauea14e6c2008-03-11 10:00:45 +02001228 my $revision_or_hash = shift or die "SVN or git revision required ",
1229 "as a command-line argument\n";
Adam Roben26e60162007-04-27 11:57:53 -07001230 my $result;
1231 if ($revision_or_hash =~ /^r\d+$/) {
Adam Robenb3cb7e42007-04-29 01:35:27 -07001232 my $head = shift;
1233 $head ||= 'HEAD';
1234 my @refs;
João Abecasis63c56022008-07-14 16:28:04 +01001235 my (undef, undef, $uuid, $gs) = working_head_info($head, \@refs);
Adam Robenb3cb7e42007-04-29 01:35:27 -07001236 unless ($gs) {
1237 die "Unable to determine upstream SVN information from ",
1238 "$head history\n";
Adam Roben26e60162007-04-27 11:57:53 -07001239 }
Adam Robenb3cb7e42007-04-29 01:35:27 -07001240 my $desired_revision = substr($revision_or_hash, 1);
John Keeping2934a482013-01-17 22:19:33 +00001241 if ($_before) {
1242 $result = $gs->find_rev_before($desired_revision, 1);
1243 } elsif ($_after) {
1244 $result = $gs->find_rev_after($desired_revision, 1);
1245 } else {
1246 $result = $gs->rev_map_get($desired_revision, $uuid);
1247 }
Adam Roben26e60162007-04-27 11:57:53 -07001248 } else {
1249 my (undef, $rev, undef) = cmt_metadata($revision_or_hash);
1250 $result = $rev;
1251 }
1252 print "$result\n" if $result;
1253}
1254
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001255sub auto_create_empty_directories {
1256 my ($gs) = @_;
1257 my $var = eval { command_oneline('config', '--get', '--bool',
1258 "svn-remote.$gs->{repo_id}.automkdirs") };
1259 # By default, create empty directories by consulting the unhandled log,
1260 # but allow setting it to 'false' to skip it.
1261 return !($var && $var eq 'false');
1262}
1263
Eric Wong905f8b72007-02-16 03:22:40 -08001264sub cmd_rebase {
1265 command_noisy(qw/update-index --refresh/);
Eric Wong13c823f2007-04-08 00:59:19 -07001266 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1267 unless ($gs) {
Eric Wong905f8b72007-02-16 03:22:40 -08001268 die "Unable to determine upstream SVN information from ",
1269 "working tree history\n";
1270 }
Seth Falcon7d45e142008-05-19 20:29:17 -07001271 if ($_dry_run) {
1272 print "Remote Branch: " . $gs->refname . "\n";
1273 print "SVN URL: " . $url . "\n";
1274 return;
1275 }
Eric Wong905f8b72007-02-16 03:22:40 -08001276 if (command(qw/diff-index HEAD --/)) {
Veres Lajosf7e604e2013-06-19 07:37:24 +02001277 print STDERR "Cannot rebase with uncommitted changes:\n";
Eric Wong905f8b72007-02-16 03:22:40 -08001278 command_noisy('status');
1279 exit 1;
1280 }
Eric Wongdee41f32007-03-13 11:40:36 -07001281 unless ($_local) {
Steven Grimmcec0d5a2007-11-29 11:54:39 -08001282 # rebase will checkout for us, so no need to do it explicitly
1283 $_no_checkout = 'true';
Eric Wongdee41f32007-03-13 11:40:36 -07001284 $_fetch_all ? $gs->fetch_all : $gs->fetch;
1285 }
Eric Wong905f8b72007-02-16 03:22:40 -08001286 command_noisy(rebase_cmd(), $gs->refname);
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001287 if (auto_create_empty_directories($gs)) {
1288 $gs->mkemptydirs;
1289 }
Eric Wong905f8b72007-02-16 03:22:40 -08001290}
1291
Eric Wong5969cbe2007-01-11 17:58:39 -08001292sub cmd_show_ignore {
Eric Wong13c823f2007-04-08 00:59:19 -07001293 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1294 $gs ||= Git::SVN->new;
Eric Wong5969cbe2007-01-11 17:58:39 -08001295 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001296 $gs->prop_walk($gs->path, $r, sub {
Benoit Sigoure01bdab82007-10-16 16:36:48 +02001297 my ($gs, $path, $props) = @_;
1298 print STDOUT "\n# $path\n";
1299 my $s = $props->{'svn:ignore'} or return;
1300 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +02001301 $s =~ s/^\n+//;
Benoit Sigoure01bdab82007-10-16 16:36:48 +02001302 chomp $s;
1303 $s =~ s#^#$path#gm;
1304 print STDOUT "$s\n";
1305 });
Eric Wonga5e0ced2006-06-12 15:23:48 -07001306}
1307
Vineet Kumar2d879792007-11-19 14:56:15 -08001308sub cmd_show_externals {
1309 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1310 $gs ||= Git::SVN->new;
1311 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001312 $gs->prop_walk($gs->path, $r, sub {
Vineet Kumar2d879792007-11-19 14:56:15 -08001313 my ($gs, $path, $props) = @_;
1314 print STDOUT "\n# $path\n";
1315 my $s = $props->{'svn:externals'} or return;
1316 $s =~ s/[\r\n]+/\n/g;
1317 chomp $s;
1318 $s =~ s#^#$path#gm;
1319 print STDOUT "$s\n";
1320 });
1321}
1322
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001323sub cmd_create_ignore {
1324 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1325 $gs ||= Git::SVN->new;
1326 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001327 $gs->prop_walk($gs->path, $r, sub {
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001328 my ($gs, $path, $props) = @_;
1329 # $path is of the form /path/to/dir/
Brian Gernhardt7d9fd452009-02-19 13:08:04 -05001330 $path = '.' . $path;
1331 # SVN can have attributes on empty directories,
1332 # which git won't track
1333 mkpath([$path]) unless -d $path;
1334 my $ignore = $path . '.gitignore';
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001335 my $s = $props->{'svn:ignore'} or return;
1336 open(GITIGNORE, '>', $ignore)
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001337 or fatal("Failed to open `$ignore' for writing: $!");
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001338 $s =~ s/[\r\n]+/\n/g;
Michael Haggertya7d72542009-08-07 21:21:21 +02001339 $s =~ s/^\n+//;
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001340 chomp $s;
1341 # Prefix all patterns so that the ignore doesn't apply
1342 # to sub-directories.
1343 $s =~ s#^#/#gm;
1344 print GITIGNORE "$s\n";
1345 close(GITIGNORE)
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001346 or fatal("Failed to close `$ignore': $!");
Gustaf Hendebyc4c66b22008-05-05 00:33:09 +02001347 command_noisy('add', '-f', $ignore);
Benoit Sigoured05ddec2007-10-16 16:36:49 +02001348 });
1349}
1350
Eric Wong6111b932009-11-15 18:57:16 -08001351sub cmd_mkdirs {
1352 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1353 $gs ||= Git::SVN->new;
1354 $gs->mkemptydirs($_revision);
1355}
1356
Benoit Sigoure15153452007-10-16 16:36:50 +02001357# get_svnprops(PATH)
1358# ------------------
Benoit Sigoure51e057c2007-10-16 16:36:51 +02001359# Helper for cmd_propget and cmd_proplist below.
Benoit Sigoure15153452007-10-16 16:36:50 +02001360sub get_svnprops {
1361 my $path = shift;
1362 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1363 $gs ||= Git::SVN->new;
1364
1365 # prefix THE PATH by the sub-directory from which the user
1366 # invoked us.
1367 $path = $cmd_dir_prefix . $path;
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001368 fatal("No such file or directory: $path") unless -e $path;
Benoit Sigoure15153452007-10-16 16:36:50 +02001369 my $is_dir = -d $path ? 1 : 0;
Eric Wongf3045912012-09-18 00:09:31 +00001370 $path = join_paths($gs->path, $path);
Benoit Sigoure15153452007-10-16 16:36:50 +02001371
1372 # canonicalize the path (otherwise libsvn will abort or fail to
1373 # find the file)
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08001374 $path = canonicalize_path($path);
Benoit Sigoure15153452007-10-16 16:36:50 +02001375
1376 my $r = (defined $_revision ? $_revision : $gs->ra->get_latest_revnum);
1377 my $props;
1378 if ($is_dir) {
1379 (undef, undef, $props) = $gs->ra->get_dir($path, $r);
1380 }
1381 else {
1382 (undef, $props) = $gs->ra->get_file($path, $r, undef);
1383 }
1384 return $props;
1385}
1386
1387# cmd_propget (PROP, PATH)
1388# ------------------------
1389# Print the SVN property PROP for PATH.
1390sub cmd_propget {
1391 my ($prop, $path) = @_;
1392 $path = '.' if not defined $path;
1393 usage(1) if not defined $prop;
1394 my $props = get_svnprops($path);
1395 if (not defined $props->{$prop}) {
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001396 fatal("`$path' does not have a `$prop' SVN property.");
Benoit Sigoure15153452007-10-16 16:36:50 +02001397 }
1398 print $props->{$prop} . "\n";
1399}
1400
Alfred Perlstein83c94332014-12-07 02:47:23 -08001401# cmd_propset (PROPNAME, PROPVAL, PATH)
1402# ------------------------
1403# Adjust the SVN property PROPNAME to PROPVAL for PATH.
1404sub cmd_propset {
1405 my ($propname, $propval, $path) = @_;
1406 $path = '.' if not defined $path;
1407 $path = $cmd_dir_prefix . $path;
1408 usage(1) if not defined $propname;
1409 usage(1) if not defined $propval;
1410 my $file = basename($path);
1411 my $dn = dirname($path);
1412 my $cur_props = Git::SVN::Editor::check_attr( "svn-properties", $path );
1413 my @new_props;
1414 if (!$cur_props || $cur_props eq "unset" || $cur_props eq "" || $cur_props eq "set") {
1415 push @new_props, "$propname=$propval";
1416 } else {
1417 # TODO: handle combining properties better
1418 my @props = split(/;/, $cur_props);
1419 my $replaced_prop;
1420 foreach my $prop (@props) {
1421 # Parse 'name=value' syntax and set the property.
1422 if ($prop =~ /([^=]+)=(.*)/) {
1423 my ($n,$v) = ($1,$2);
1424 if ($n eq $propname) {
1425 $v = $propval;
1426 $replaced_prop = 1;
1427 }
1428 push @new_props, "$n=$v";
1429 }
1430 }
1431 if (!$replaced_prop) {
1432 push @new_props, "$propname=$propval";
1433 }
1434 }
1435 my $attrfile = "$dn/.gitattributes";
1436 open my $attrfh, '>>', $attrfile or die "Can't open $attrfile: $!\n";
1437 # TODO: don't simply append here if $file already has svn-properties
1438 my $new_props = join(';', @new_props);
1439 print $attrfh "$file svn-properties=$new_props\n" or
1440 die "write to $attrfile: $!\n";
1441 close $attrfh or die "close $attrfile: $!\n";
1442}
1443
Benoit Sigoure51e057c2007-10-16 16:36:51 +02001444# cmd_proplist (PATH)
1445# -------------------
1446# Print the list of SVN properties for PATH.
1447sub cmd_proplist {
1448 my $path = shift;
1449 $path = '.' if not defined $path;
1450 my $props = get_svnprops($path);
1451 print "Properties on '$path':\n";
1452 foreach (sort keys %{$props}) {
1453 print " $_\n";
1454 }
1455}
1456
Eric Wong8164b652007-01-11 15:35:55 -08001457sub cmd_multi_init {
Eric Wong9d55b412006-06-12 15:53:13 -07001458 my $url = shift;
Marc Branchaud62244062009-06-23 13:02:08 -04001459 unless (defined $_trunk || @_branches || @_tags) {
Eric Wong98327e52007-01-04 18:02:00 -08001460 usage(1);
1461 }
Eric Wongdc431662007-05-19 03:59:02 -07001462
Johan Herlandfe191fc2013-10-11 14:57:07 +02001463 $_prefix = 'origin/' unless defined $_prefix;
Eric Wongdadc6d22007-02-14 12:27:41 -08001464 if (defined $url) {
Ulrich Dangel50ff2362009-06-26 16:52:09 +02001465 $url = canonicalize_url($url);
Eric Wongdadc6d22007-02-14 12:27:41 -08001466 init_subdir(@_);
1467 }
Eric Wongf30603f2007-02-23 01:26:26 -08001468 do_git_init_db();
Eric Wong98327e52007-01-04 18:02:00 -08001469 if (defined $_trunk) {
Jonathan Niederb4b33602010-06-13 06:27:43 -05001470 $_trunk =~ s#^/+##;
Adam Brewster6f5748e2009-08-11 23:14:27 -04001471 my $trunk_ref = 'refs/remotes/' . $_prefix . 'trunk';
Eric Wong706587f2007-01-18 17:50:01 -08001472 # try both old-style and new-style lookups:
1473 my $gs_trunk = eval { Git::SVN->new($trunk_ref) };
Eric Wong8164b652007-01-11 15:35:55 -08001474 unless ($gs_trunk) {
Eric Wong706587f2007-01-18 17:50:01 -08001475 my ($trunk_url, $trunk_path) =
1476 complete_svn_url($url, $_trunk);
1477 $gs_trunk = Git::SVN->init($trunk_url, $trunk_path,
1478 undef, $trunk_ref);
Eric Wong98327e52007-01-04 18:02:00 -08001479 }
Eric Wongc35b96e2006-10-11 11:53:21 -07001480 }
Marc Branchaud62244062009-06-23 13:02:08 -04001481 return unless @_branches || @_tags;
Eric Wonge7db67e2007-01-11 17:09:26 -08001482 my $ra = $url ? Git::SVN::Ra->new($url) : undef;
Marc Branchaud62244062009-06-23 13:02:08 -04001483 foreach my $path (@_branches) {
1484 complete_url_ls_init($ra, $path, '--branches/-b', $_prefix);
1485 }
1486 foreach my $path (@_tags) {
1487 complete_url_ls_init($ra, $path, '--tags/-t', $_prefix.'tags/');
1488 }
Eric Wong9d55b412006-06-12 15:53:13 -07001489}
1490
Eric Wong1c8443b2007-01-14 02:17:00 -08001491sub cmd_multi_fetch {
Eric Wong4d0157d2009-11-22 12:37:06 -08001492 $Git::SVN::no_reuse_existing = undef;
Eric Wong0af9c9f2007-01-27 22:28:56 -08001493 my $remotes = Git::SVN::read_all_remotes();
1494 foreach my $repo_id (sort keys %$remotes) {
Eric Wongdb03cd22007-02-13 00:38:02 -08001495 if ($remotes->{$repo_id}->{url}) {
Eric Wong4bb9ed02007-02-03 13:29:17 -08001496 Git::SVN::fetch_all($repo_id, $remotes);
1497 }
Eric Wong706587f2007-01-18 17:50:01 -08001498 }
Eric Wong9d55b412006-06-12 15:53:13 -07001499}
1500
Eric Wong44320b92007-01-13 22:35:53 -08001501# this command is special because it requires no metadata
1502sub cmd_commit_diff {
1503 my ($ta, $tb, $url) = @_;
David Aguilar0b670ab2013-02-24 14:48:38 -08001504 my $usage = "usage: $0 commit-diff -r<revision> ".
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001505 "<tree-ish> <tree-ish> [<URL>]";
Eric Wong44320b92007-01-13 22:35:53 -08001506 fatal($usage) if (!defined $ta || !defined $tb);
Karl Hasselströmd72ab8c2008-05-17 17:07:09 +02001507 my $svn_path = '';
Eric Wong44320b92007-01-13 22:35:53 -08001508 if (!defined $url) {
1509 my $gs = eval { Git::SVN->new };
1510 if (!$gs) {
1511 fatal("Needed URL or usable git-svn --id in ",
1512 "the command-line\n", $usage);
1513 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001514 $url = $gs->url;
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001515 $svn_path = $gs->path;
Eric Wong44320b92007-01-13 22:35:53 -08001516 }
1517 unless (defined $_revision) {
1518 fatal("-r|--revision is a required argument\n", $usage);
1519 }
1520 if (defined $_message && defined $_file) {
1521 fatal("Both --message/-m and --file/-F specified ",
1522 "for the commit message.\n",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001523 "I have no idea what you mean");
Eric Wong44320b92007-01-13 22:35:53 -08001524 }
1525 if (defined $_file) {
1526 $_message = file_to_s($_file);
1527 } else {
1528 $_message ||= get_commit_entry($tb)->{log};
1529 }
1530 my $ra ||= Git::SVN::Ra->new($url);
1531 my $r = $_revision;
1532 if ($r eq 'HEAD') {
1533 $r = $ra->get_latest_revnum;
1534 } elsif ($r !~ /^\d+$/) {
1535 die "revision argument: $r not understood by git-svn\n";
1536 }
Eric Wong61395352007-01-27 14:33:08 -08001537 my %ed_opts = ( r => $r,
1538 log => $_message,
1539 ra => $ra,
1540 tree_a => $ta,
1541 tree_b => $tb,
1542 editor_cb => sub { print "Committed r$_[0]\n" },
1543 svn_path => $svn_path );
Jonathan Nieder72827aa2012-05-28 02:00:46 -05001544 if (!Git::SVN::Editor->new(\%ed_opts)->apply_diff) {
Eric Wong44320b92007-01-13 22:35:53 -08001545 print "No changes\n$ta == $tb\n";
1546 }
Eric Wong44320b92007-01-13 22:35:53 -08001547}
1548
David D. Kilzere6fefa92007-11-21 11:57:18 -08001549sub cmd_info {
Eric Wong4950eed2014-08-03 01:44:08 +00001550 my $path_arg = defined($_[0]) ? $_[0] : '.';
1551 my $path = $path_arg;
1552 if (File::Spec->file_name_is_absolute($path)) {
1553 $path = canonicalize_path($path);
1554
1555 my $toplevel = eval {
1556 my @cmd = qw/rev-parse --show-toplevel/;
1557 command_oneline(\@cmd, STDERR => 0);
1558 };
1559
1560 # remove $toplevel from the absolute path:
1561 my ($vol, $dirs, $file) = File::Spec->splitpath($path);
1562 my (undef, $tdirs, $tfile) = File::Spec->splitpath($toplevel);
1563 my @dirs = File::Spec->splitdir($dirs);
1564 my @tdirs = File::Spec->splitdir($tdirs);
1565 pop @dirs if $dirs[-1] eq '';
1566 pop @tdirs if $tdirs[-1] eq '';
1567 push @dirs, $file;
1568 push @tdirs, $tfile;
1569 while (@tdirs && @dirs && $tdirs[0] eq $dirs[0]) {
1570 shift @dirs;
1571 shift @tdirs;
1572 }
1573 $dirs = File::Spec->catdir(@dirs);
1574 $path = File::Spec->catpath($vol, $dirs);
1575
1576 $path = canonicalize_path($path);
1577 } else {
1578 $path = canonicalize_path($cmd_dir_prefix . $path);
1579 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001580 if (exists $_[1]) {
David D. Kilzere6fefa92007-11-21 11:57:18 -08001581 die "Too many arguments specified\n";
1582 }
1583
1584 my ($file_type, $diff_status) = find_file_type_and_diff_status($path);
1585
1586 if (!$file_type && !$diff_status) {
Thomas Rast2cf3e3a2008-08-29 15:42:48 +02001587 print STDERR "svn: '$path' is not under version control\n";
1588 exit 1;
David D. Kilzere6fefa92007-11-21 11:57:18 -08001589 }
1590
1591 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1592 unless ($gs) {
1593 die "Unable to determine upstream SVN information from ",
1594 "working tree history\n";
1595 }
Eric Wongbd2d4f92008-08-05 00:35:16 -07001596
1597 # canonicalize_path() will return "" to make libsvn 1.5.x happy,
1598 $path = "." if $path eq "";
1599
Eric Wong4950eed2014-08-03 01:44:08 +00001600 my $full_url = canonicalize_url( add_path_to_url( $url, $path ) );
David D. Kilzere6fefa92007-11-21 11:57:18 -08001601
David D. Kilzer8b014d72007-11-21 11:57:19 -08001602 if ($_url) {
Michael G. Schwern8266fc82012-07-28 02:47:49 -07001603 print "$full_url\n";
David D. Kilzer8b014d72007-11-21 11:57:19 -08001604 return;
1605 }
1606
Eric Wong4950eed2014-08-03 01:44:08 +00001607 my $result = "Path: $path_arg\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001608 $result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
Michael G. Schwern8266fc82012-07-28 02:47:49 -07001609 $result .= "URL: $full_url\n";
David D. Kilzere6fefa92007-11-21 11:57:18 -08001610
Eric Wonga5460eb2007-11-21 18:20:57 -08001611 eval {
1612 my $repos_root = $gs->repos_root;
1613 Git::SVN::remove_username($repos_root);
Michael G. Schwern9c27a572012-07-28 02:47:48 -07001614 $result .= "Repository Root: " . canonicalize_url($repos_root) . "\n";
Eric Wonga5460eb2007-11-21 18:20:57 -08001615 };
1616 if ($@) {
1617 $result .= "Repository Root: (offline)\n";
1618 }
Michael J Gruberb91a8a32010-03-03 21:34:31 +01001619 ::_req_svn();
Marcel Koeppen22ba47f2009-01-19 03:02:01 +01001620 $result .= "Repository UUID: $uuid\n" unless $diff_status eq "A" &&
Junio C Hamanof760c902012-05-02 19:53:50 +00001621 (::compare_svn_version('1.5.4') <= 0 || $file_type ne "dir");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001622 $result .= "Revision: " . ($diff_status eq "A" ? 0 : $rev) . "\n";
1623
1624 $result .= "Node Kind: " .
1625 ($file_type eq "dir" ? "directory" : "file") . "\n";
1626
1627 my $schedule = $diff_status eq "A"
1628 ? "add"
1629 : ($diff_status eq "D" ? "delete" : "normal");
1630 $result .= "Schedule: $schedule\n";
1631
1632 if ($diff_status eq "A") {
1633 print $result, "\n";
1634 return;
1635 }
1636
1637 my ($lc_author, $lc_rev, $lc_date_utc);
Eric Wong4950eed2014-08-03 01:44:08 +00001638 my @args = Git::SVN::Log::git_svn_log_cmd($rev, $rev, "--", $path);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001639 my $log = command_output_pipe(@args);
1640 my $esc_color = qr/(?:\033\[(?:(?:\d+;)*\d*)?m)*/;
1641 while (<$log>) {
1642 if (/^${esc_color}author (.+) <[^>]+> (\d+) ([\-\+]?\d+)$/o) {
1643 $lc_author = $1;
1644 $lc_date_utc = Git::SVN::Log::parse_git_date($2, $3);
1645 } elsif (/^${esc_color} (git-svn-id:.+)$/o) {
1646 (undef, $lc_rev, undef) = ::extract_metadata($1);
1647 }
1648 }
1649 close $log;
1650
1651 Git::SVN::Log::set_local_timezone();
1652
1653 $result .= "Last Changed Author: $lc_author\n";
1654 $result .= "Last Changed Rev: $lc_rev\n";
1655 $result .= "Last Changed Date: " .
1656 Git::SVN::Log::format_svn_date($lc_date_utc) . "\n";
1657
1658 if ($file_type ne "dir") {
1659 my $text_last_updated_date =
1660 ($diff_status eq "D" ? $lc_date_utc : (stat $path)[9]);
1661 $result .=
1662 "Text Last Updated: " .
1663 Git::SVN::Log::format_svn_date($text_last_updated_date) .
1664 "\n";
1665 my $checksum;
1666 if ($diff_status eq "D") {
1667 my ($fh, $ctx) =
1668 command_output_pipe(qw(cat-file blob), "HEAD:$path");
1669 if ($file_type eq "link") {
1670 my $file_name = <$fh>;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001671 $checksum = md5sum("link $file_name");
David D. Kilzere6fefa92007-11-21 11:57:18 -08001672 } else {
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001673 $checksum = md5sum($fh);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001674 }
1675 command_close_pipe($fh, $ctx);
1676 } elsif ($file_type eq "link") {
1677 my $file_name =
1678 command(qw(cat-file blob), "HEAD:$path");
1679 $checksum =
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001680 md5sum("link " . $file_name);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001681 } else {
1682 open FILE, "<", $path or die $!;
David D. Kilzer8d7c4fa2007-11-22 11:18:00 -08001683 $checksum = md5sum(\*FILE);
David D. Kilzere6fefa92007-11-21 11:57:18 -08001684 close FILE or die $!;
1685 }
1686 $result .= "Checksum: " . $checksum . "\n";
1687 }
1688
1689 print $result, "\n";
1690}
1691
Ben Jackson195643f2009-06-03 20:45:52 -07001692sub cmd_reset {
1693 my $target = shift || $_revision or die "SVN revision required\n";
1694 $target = $1 if $target =~ /^r(\d+)$/;
1695 $target =~ /^\d+$/ or die "Numeric SVN revision expected\n";
1696 my ($url, $rev, $uuid, $gs) = working_head_info('HEAD');
1697 unless ($gs) {
1698 die "Unable to determine upstream SVN information from ".
1699 "history\n";
1700 }
1701 my ($r, $c) = $gs->find_rev_before($target, not $_fetch_parent);
Jonathan Nieder70ee0b72010-05-04 16:36:47 -07001702 die "Cannot find SVN revision $target\n" unless defined($c);
Ben Jackson195643f2009-06-03 20:45:52 -07001703 $gs->rev_map_set($r, $c, 'reset', $uuid);
1704 print "r$r = $c ($gs->{ref_id})\n";
1705}
1706
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001707sub cmd_gc {
Eric Wong47092c12015-01-15 08:54:22 +00001708 require File::Find;
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07001709 if (!can_compress()) {
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001710 warn "Compress::Zlib could not be found; unhandled.log " .
1711 "files will not be compressed.\n";
1712 }
Eric Wong47092c12015-01-15 08:54:22 +00001713 File::Find::find({ wanted => \&gc_directory, no_chdir => 1},
Eric Wong112423e2016-10-14 00:27:54 +00001714 Git::SVN::svn_dir());
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05001715}
1716
Eric Wong3397f9d2006-02-16 01:24:16 -08001717########################### utility functions #########################
1718
Eric Wong905f8b72007-02-16 03:22:40 -08001719sub rebase_cmd {
1720 my @cmd = qw/rebase/;
1721 push @cmd, '-v' if $_verbose;
1722 push @cmd, qw/--merge/ if $_merge;
1723 push @cmd, "--strategy=$_strategy" if $_strategy;
Johannes Schindelinea8b7be2019-11-22 22:59:29 +00001724 push @cmd, "--rebase-merges" if $_rebase_merges;
Eric Wong905f8b72007-02-16 03:22:40 -08001725 @cmd;
1726}
1727
Eric Wong1e889ef2007-02-16 01:45:13 -08001728sub post_fetch_checkout {
1729 return if $_no_checkout;
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +01001730 return if verify_ref('HEAD^0');
Eric Wong1e889ef2007-02-16 01:45:13 -08001731 my $gs = $Git::SVN::_head or return;
Eric Wong1e889ef2007-02-16 01:45:13 -08001732
Eric Wongb186a262009-08-12 16:01:59 -07001733 # look for "trunk" ref if it exists
1734 my $remote = Git::SVN::read_all_remotes()->{$gs->{repo_id}};
1735 my $fetch = $remote->{fetch};
1736 if ($fetch) {
1737 foreach my $p (keys %$fetch) {
1738 basename($fetch->{$p}) eq 'trunk' or next;
1739 $gs = Git::SVN->new($fetch->{$p}, $gs->{repo_id}, $p);
1740 last;
1741 }
1742 }
1743
Marcin Owsianye3bd4dd2012-06-24 22:40:05 +01001744 command_noisy(qw(update-ref HEAD), $gs->refname);
1745 return unless verify_ref('HEAD^0');
Eric Wong1e889ef2007-02-16 01:45:13 -08001746
1747 return if $ENV{GIT_DIR} !~ m#^(?:.*/)?\.git$#;
Eric Wong112423e2016-10-14 00:27:54 +00001748 my $index = command_oneline(qw(rev-parse --git-path index));
Eric Wong1e889ef2007-02-16 01:45:13 -08001749 return if -f $index;
1750
Matthias Lederhofer7ae3df82007-06-03 16:48:16 +02001751 return if command_oneline(qw/rev-parse --is-inside-work-tree/) eq 'false';
Eric Wong1e889ef2007-02-16 01:45:13 -08001752 return if command_oneline(qw/rev-parse --is-inside-git-dir/) eq 'true';
1753 command_noisy(qw/read-tree -m -u -v HEAD HEAD/);
1754 print STDERR "Checked out HEAD:\n ",
1755 $gs->full_url, " r", $gs->last_rev, "\n";
Michael Haggerty55f9d7a2011-04-01 12:26:00 +02001756 if (auto_create_empty_directories($gs)) {
1757 $gs->mkemptydirs($gs->last_rev);
1758 }
Eric Wong1e889ef2007-02-16 01:45:13 -08001759}
1760
Eric Wong98327e52007-01-04 18:02:00 -08001761sub complete_svn_url {
1762 my ($url, $path) = @_;
Michael G. Schwern6a8d9992012-07-27 13:00:51 -07001763
Eric Wongb5571652016-03-16 20:14:08 +00001764 if ($path =~ m#^[a-z\+]+://#i) { # path is a URL
1765 $path = canonicalize_url($path);
1766 } else {
1767 $path = canonicalize_path($path);
1768 if (!defined $url || $url !~ m#^[a-z\+]+://#i) {
Eric Wong98327e52007-01-04 18:02:00 -08001769 fatal("E: '$path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001770 "and a separate URL is not specified");
Eric Wong98327e52007-01-04 18:02:00 -08001771 }
Eric Wong706587f2007-01-18 17:50:01 -08001772 return ($url, $path);
Eric Wong98327e52007-01-04 18:02:00 -08001773 }
Eric Wong706587f2007-01-18 17:50:01 -08001774 return ($path, '');
Eric Wong98327e52007-01-04 18:02:00 -08001775}
1776
Eric Wong9d55b412006-06-12 15:53:13 -07001777sub complete_url_ls_init {
Eric Wong706587f2007-01-18 17:50:01 -08001778 my ($ra, $repo_path, $switch, $pfx) = @_;
1779 unless ($repo_path) {
Eric Wong9d55b412006-06-12 15:53:13 -07001780 print STDERR "W: $switch not specified\n";
1781 return;
1782 }
Eric Wongb5571652016-03-16 20:14:08 +00001783 if ($repo_path =~ m#^[a-z\+]+://#i) {
1784 $repo_path = canonicalize_url($repo_path);
Eric Wong706587f2007-01-18 17:50:01 -08001785 $ra = Git::SVN::Ra->new($repo_path);
1786 $repo_path = '';
Eric Wonge7db67e2007-01-11 17:09:26 -08001787 } else {
Eric Wongb5571652016-03-16 20:14:08 +00001788 $repo_path = canonicalize_path($repo_path);
Eric Wong706587f2007-01-18 17:50:01 -08001789 $repo_path =~ s#^/+##;
Eric Wonge7db67e2007-01-11 17:09:26 -08001790 unless ($ra) {
Eric Wong706587f2007-01-18 17:50:01 -08001791 fatal("E: '$repo_path' is not a complete URL ",
Benoit Sigoure207f1a72007-10-16 16:36:52 +02001792 "and a separate URL is not specified");
Eric Wong9d55b412006-06-12 15:53:13 -07001793 }
Eric Wonge7db67e2007-01-11 17:09:26 -08001794 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001795 my $url = $ra->url;
Eric Wongb4d57e52007-02-14 15:10:44 -08001796 my $gs = Git::SVN->init($url, undef, undef, undef, 1);
1797 my $k = "svn-remote.$gs->{repo_id}.url";
1798 my $orig_url = eval { command_oneline(qw/config --get/, $k) };
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001799 if ($orig_url && ($orig_url ne $gs->url)) {
Eric Wongb4d57e52007-02-14 15:10:44 -08001800 die "$k already set: $orig_url\n",
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001801 "wanted to set to: $gs->url\n";
Eric Wong88cf4102007-02-01 03:59:07 -08001802 }
Michael G. Schwernb1ea6c32012-07-27 13:00:52 -07001803 command_oneline('config', $k, $gs->url) unless $orig_url;
1804
Michael G. Schwern5eaa1fd2012-07-28 02:47:52 -07001805 my $remote_path = join_paths( $gs->path, $repo_path );
Eric Wong5268f9e2009-08-16 14:22:12 -07001806 $remote_path =~ s{%([0-9A-F]{2})}{chr hex($1)}ieg;
Eric Wongb4d57e52007-02-14 15:10:44 -08001807 $remote_path =~ s#^/##g;
Eric Wonged0b9d42008-03-14 11:01:23 -07001808 $remote_path .= "/*" if $remote_path !~ /\*/;
Eric Wongb4d57e52007-02-14 15:10:44 -08001809 my ($n) = ($switch =~ /^--(\w+)/);
1810 if (length $pfx && $pfx !~ m#/$#) {
1811 die "--prefix='$pfx' must have a trailing slash '/'\n";
Eric Wong9d55b412006-06-12 15:53:13 -07001812 }
Marcus Griep570d35c2008-08-08 01:41:57 -07001813 command_noisy('config',
Marc Branchaud62244062009-06-23 13:02:08 -04001814 '--add',
Marcus Griep570d35c2008-08-08 01:41:57 -07001815 "svn-remote.$gs->{repo_id}.$n",
1816 "$remote_path:refs/remotes/$pfx*" .
1817 ('/*' x (($remote_path =~ tr/*/*/) - 1)) );
Eric Wong9d55b412006-06-12 15:53:13 -07001818}
1819
Eric Wongaef4e922006-12-15 10:59:54 -08001820sub verify_ref {
1821 my ($ref) = @_;
Eric Wong2c5c1d52006-12-28 01:16:21 -08001822 eval { command_oneline([ 'rev-parse', '--verify', $ref ],
1823 { STDERR => 0 }); };
Eric Wongaef4e922006-12-15 10:59:54 -08001824}
1825
Eric Wonga5e0ced2006-06-12 15:23:48 -07001826sub get_tree_from_treeish {
Eric Wongcf52b8f2006-02-20 10:57:28 -08001827 my ($treeish) = @_;
Eric Wong44320b92007-01-13 22:35:53 -08001828 # $treeish can be a symbolic ref, too:
Eric Wongaef4e922006-12-15 10:59:54 -08001829 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001830 my $expected;
1831 while ($type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001832 ($treeish, $type) = command(qw/cat-file tag/, $treeish);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001833 }
1834 if ($type eq 'commit') {
Eric Wongaef4e922006-12-15 10:59:54 -08001835 $expected = (grep /^tree /, command(qw/cat-file commit/,
1836 $treeish))[0];
brian m. carlson9ab33152020-06-22 18:04:12 +00001837 ($expected) = ($expected =~ /^tree ($oid)$/o);
Eric Wongcf52b8f2006-02-20 10:57:28 -08001838 die "Unable to get tree from $treeish\n" unless $expected;
1839 } elsif ($type eq 'tree') {
1840 $expected = $treeish;
1841 } else {
1842 die "$treeish is a $type, expected tree, tag or commit\n";
1843 }
Eric Wonga5e0ced2006-06-12 15:23:48 -07001844 return $expected;
1845}
Eric Wongcf52b8f2006-02-20 10:57:28 -08001846
Eric Wong44320b92007-01-13 22:35:53 -08001847sub get_commit_entry {
1848 my ($treeish) = shift;
1849 my %log_entry = ( log => '', tree => get_tree_from_treeish($treeish) );
Eric Wong112423e2016-10-14 00:27:54 +00001850 my @git_path = qw(rev-parse --git-path);
1851 my $commit_editmsg = command_oneline(@git_path, 'COMMIT_EDITMSG');
1852 my $commit_msg = command_oneline(@git_path, 'COMMIT_MSG');
Eric Wong44320b92007-01-13 22:35:53 -08001853 open my $log_fh, '>', $commit_editmsg or croak $!;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001854
Eric Wong44320b92007-01-13 22:35:53 -08001855 my $type = command_oneline(qw/cat-file -t/, $treeish);
Eric Wong4ad45152006-07-09 20:20:48 -07001856 if ($type eq 'commit' || $type eq 'tag') {
Eric Wongaef4e922006-12-15 10:59:54 -08001857 my ($msg_fh, $ctx) = command_output_pipe('cat-file',
Eric Wong44320b92007-01-13 22:35:53 -08001858 $type, $treeish);
Eric Wong3397f9d2006-02-16 01:24:16 -08001859 my $in_msg = 0;
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001860 my $author;
1861 my $saw_from = 0;
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001862 my $msgbuf = "";
Eric Wong3397f9d2006-02-16 01:24:16 -08001863 while (<$msg_fh>) {
1864 if (!$in_msg) {
Nicolas Vigier60786bd2013-09-30 16:46:14 +02001865 $in_msg = 1 if (/^$/);
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001866 $author = $1 if (/^author (.*>)/);
Eric Wongdf746c52006-03-03 01:20:08 -08001867 } elsif (/^git-svn-id: /) {
Eric Wong44320b92007-01-13 22:35:53 -08001868 # skip this for now, we regenerate the
1869 # correct one on re-fetch anyways
1870 # TODO: set *:merge properties or like...
Eric Wong3397f9d2006-02-16 01:24:16 -08001871 } else {
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001872 if (/^From:/ || /^Signed-off-by:/) {
1873 $saw_from = 1;
1874 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001875 $msgbuf .= $_;
Eric Wong3397f9d2006-02-16 01:24:16 -08001876 }
1877 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001878 $msgbuf =~ s/\s+$//s;
Eric Wong95450bb2017-12-14 00:05:08 +00001879 $msgbuf =~ s/\r\n/\n/sg; # SVN 1.6+ disallows CRLF
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001880 if ($Git::SVN::_add_author_from && defined($author)
1881 && !$saw_from) {
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001882 $msgbuf .= "\n\nFrom: $author";
Avery Pennarun6aa9ba12008-04-15 21:04:17 -04001883 }
Avery Pennarun328eb9b2008-06-12 19:10:50 -04001884 print $log_fh $msgbuf or croak $!;
Eric Wongaef4e922006-12-15 10:59:54 -08001885 command_close_pipe($msg_fh, $ctx);
Eric Wong3397f9d2006-02-16 01:24:16 -08001886 }
Eric Wong44320b92007-01-13 22:35:53 -08001887 close $log_fh or croak $!;
Eric Wong3397f9d2006-02-16 01:24:16 -08001888
1889 if ($_edit || ($type eq 'tree')) {
Jonathan Niederb4479f02009-10-30 20:42:34 -05001890 chomp(my $editor = command_oneline(qw(var GIT_EDITOR)));
1891 system('sh', '-c', $editor.' "$@"', $editor, $commit_editmsg);
Eric Wong3397f9d2006-02-16 01:24:16 -08001892 }
Eric Wong44320b92007-01-13 22:35:53 -08001893 rename $commit_editmsg, $commit_msg or croak $!;
Eric Wong16fc08e2008-10-29 23:49:26 -07001894 {
Eric Wongb510df82009-05-28 00:56:23 -07001895 require Encode;
Eric Wong16fc08e2008-10-29 23:49:26 -07001896 # SVN requires messages to be UTF-8 when entering the repo
Eric Wong16fc08e2008-10-29 23:49:26 -07001897 open $log_fh, '<', $commit_msg or croak $!;
1898 binmode $log_fh;
Eric Wongb26098f2016-10-14 00:27:53 +00001899 chomp($log_entry{log} = get_record($log_fh, undef));
Eric Wong16fc08e2008-10-29 23:49:26 -07001900
Eric Wongb510df82009-05-28 00:56:23 -07001901 my $enc = Git::config('i18n.commitencoding') || 'UTF-8';
1902 my $msg = $log_entry{log};
1903
1904 eval { $msg = Encode::decode($enc, $msg, 1) };
1905 if ($@) {
1906 die "Could not decode as $enc:\n", $msg,
1907 "\nPerhaps you need to set i18n.commitencoding\n";
Eric Wong16fc08e2008-10-29 23:49:26 -07001908 }
Eric Wongb510df82009-05-28 00:56:23 -07001909
1910 eval { $msg = Encode::encode('UTF-8', $msg, 1) };
1911 die "Could not encode as UTF-8:\n$msg\n" if $@;
1912
1913 $log_entry{log} = $msg;
1914
Eric Wong16fc08e2008-10-29 23:49:26 -07001915 close $log_fh or croak $!;
1916 }
Eric Wong44320b92007-01-13 22:35:53 -08001917 unlink $commit_msg;
1918 \%log_entry;
Eric Wonga5e0ced2006-06-12 15:23:48 -07001919}
1920
Eric Wong3397f9d2006-02-16 01:24:16 -08001921sub s_to_file {
1922 my ($str, $file, $mode) = @_;
1923 open my $fd,'>',$file or croak $!;
1924 print $fd $str,"\n" or croak $!;
1925 close $fd or croak $!;
1926 chmod ($mode &~ umask, $file) if (defined $mode);
1927}
1928
1929sub file_to_s {
1930 my $file = shift;
1931 open my $fd,'<',$file or croak "$!: file: $file\n";
1932 local $/;
1933 my $ret = <$fd>;
1934 close $fd or croak $!;
1935 $ret =~ s/\s*$//s;
1936 return $ret;
1937}
1938
Eric Wongeeb0abe2006-03-03 01:20:08 -08001939# '<svn username> = real-name <email address>' mapping based on git-svnimport:
1940sub load_authors {
1941 open my $authors, '<', $_authors or die "Can't open $_authors $!\n";
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001942 my $log = $cmd eq 'log';
Eric Wongeeb0abe2006-03-03 01:20:08 -08001943 while (<$authors>) {
1944 chomp;
Michael J Gruberf7c6de02015-09-10 14:32:13 +02001945 next unless /^(.+?|\(no author\))\s*=\s*(.+?)\s*<(.*)>\s*$/;
Eric Wongeeb0abe2006-03-03 01:20:08 -08001946 my ($user, $name, $email) = ($1, $2, $3);
Eric Wongf8c9d1d2007-01-12 02:35:20 -08001947 if ($log) {
1948 $Git::SVN::Log::rusers{"$name <$email>"} = $user;
1949 } else {
1950 $users{$user} = [$name, $email];
1951 }
Eric Wong79bb8d82006-06-01 02:35:44 -07001952 }
1953 close $authors or croak $!;
1954}
1955
Tom Princee0d10e12007-01-28 16:16:53 -08001956# convert GetOpt::Long specs for use by git-config
Eric Wong1a305822009-11-14 14:25:11 -08001957sub read_git_config {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001958 my $opts = shift;
Eric Wong97ae0912007-02-11 15:21:24 -08001959 my @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001960 foreach my $o (keys %$opts) {
Eric Wong97ae0912007-02-11 15:21:24 -08001961 # if we have mixedCase and a long option-only, then
1962 # it's a config-only variable that we don't need for
1963 # the command-line.
1964 push @config_only, $o if ($o =~ /[A-Z]/ && $o =~ /^[a-z]+$/i);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001965 my $v = $opts->{$o};
Eric Wong97ae0912007-02-11 15:21:24 -08001966 my ($key) = ($o =~ /^([a-zA-Z\-]+)/);
Eric Wongb8c92ca2006-05-24 01:40:37 -07001967 $key =~ s/-//g;
Deskin Miller225f1d02008-10-23 15:21:34 -04001968 my $arg = 'git config';
Eric Wongb8c92ca2006-05-24 01:40:37 -07001969 $arg .= ' --int' if ($o =~ /[:=]i$/);
1970 $arg .= ' --bool' if ($o !~ /[:=][sfi]$/);
1971 if (ref $v eq 'ARRAY') {
1972 chomp(my @tmp = `$arg --get-all svn.$key`);
1973 @$v = @tmp if @tmp;
1974 } else {
1975 chomp(my $tmp = `$arg --get svn.$key`);
Eric Wong77742842007-02-10 21:07:12 -08001976 if ($tmp && !($arg =~ / --bool/ && $tmp eq 'false')) {
Eric Wongb8c92ca2006-05-24 01:40:37 -07001977 $$v = $tmp;
1978 }
1979 }
1980 }
brian m. carlson66eadd12020-06-22 18:04:15 +00001981 load_object_format();
Eric Wong97ae0912007-02-11 15:21:24 -08001982 delete @$opts{@config_only} if @config_only;
Eric Wongb8c92ca2006-05-24 01:40:37 -07001983}
1984
brian m. carlson66eadd12020-06-22 18:04:15 +00001985sub load_object_format {
1986 chomp(my $hash = `git config --get extensions.objectformat`);
1987 $::oid_length = 64 if $hash eq 'sha256';
1988}
1989
Eric Wong79bb8d82006-06-01 02:35:44 -07001990sub extract_metadata {
Eric Wongc1927a82006-06-27 19:39:11 -07001991 my $id = shift or return (undef, undef, undef);
Sam Vilain3dfab992007-06-30 20:56:13 +12001992 my ($url, $rev, $uuid) = ($id =~ /^\s*git-svn-id:\s+(.*)\@(\d+)
Eric Wongb3e95932009-07-11 14:13:12 -07001993 \s([a-f\d\-]+)$/ix);
Eric Wonge70dc782006-11-23 14:54:04 -08001994 if (!defined $rev || !$uuid || !$url) {
Eric Wong79bb8d82006-06-01 02:35:44 -07001995 # some of the original repositories I made had
Pavel Roskin82e5a822006-07-10 01:50:18 -04001996 # identifiers like this:
Eric Wongb3e95932009-07-11 14:13:12 -07001997 ($rev, $uuid) = ($id =~/^\s*git-svn-id:\s(\d+)\@([a-f\d\-]+)/i);
Eric Wong79bb8d82006-06-01 02:35:44 -07001998 }
1999 return ($url, $rev, $uuid);
2000}
2001
Eric Wongc1927a82006-06-27 19:39:11 -07002002sub cmt_metadata {
2003 return extract_metadata((grep(/^git-svn-id: /,
Eric Wongaef4e922006-12-15 10:59:54 -08002004 command(qw/cat-file commit/, shift)))[-1]);
Eric Wongc1927a82006-06-27 19:39:11 -07002005}
2006
Boris Byk6ea42032009-04-11 00:32:41 +04002007sub cmt_sha2rev_batch {
2008 my %s2r;
2009 my ($pid, $in, $out, $ctx) = command_bidi_pipe(qw/cat-file --batch/);
2010 my $list = shift;
2011
2012 foreach my $sha (@{$list}) {
2013 my $first = 1;
2014 my $size = 0;
2015 print $out $sha, "\n";
2016
2017 while (my $line = <$in>) {
brian m. carlson94b2ee12020-06-22 18:04:14 +00002018 if ($first && $line =~ /^$::oid\smissing$/) {
Boris Byk6ea42032009-04-11 00:32:41 +04002019 last;
2020 } elsif ($first &&
brian m. carlson94b2ee12020-06-22 18:04:14 +00002021 $line =~ /^$::oid\scommit\s(\d+)$/) {
Boris Byk6ea42032009-04-11 00:32:41 +04002022 $first = 0;
2023 $size = $1;
2024 next;
2025 } elsif ($line =~ /^(git-svn-id: )/) {
2026 my (undef, $rev, undef) =
2027 extract_metadata($line);
2028 $s2r{$sha} = $rev;
2029 }
2030
2031 $size -= length($line);
2032 last if ($size == 0);
2033 }
2034 }
2035
2036 command_close_bidi_pipe($pid, $in, $out, $ctx);
2037
2038 return \%s2r;
2039}
2040
Eric Wong905f8b72007-02-16 03:22:40 -08002041sub working_head_info {
2042 my ($head, $refs) = @_;
Ævar Arnfjörð Bjarmason83cf21f2012-02-12 00:23:06 +00002043 my @args = qw/rev-list --first-parent --pretty=medium/;
Slava Kardakov9926f662013-06-05 11:31:27 -07002044 my ($fh, $ctx) = command_output_pipe(@args, $head, "--");
Sam Vilain3dfab992007-06-30 20:56:13 +12002045 my $hash;
Sam Vilain40cb8f82007-06-30 20:56:14 +12002046 my %max;
Sam Vilain3dfab992007-06-30 20:56:13 +12002047 while (<$fh>) {
brian m. carlson9ab33152020-06-22 18:04:12 +00002048 if ( m{^commit ($::oid)$} ) {
Sam Vilain3dfab992007-06-30 20:56:13 +12002049 unshift @$refs, $hash if $hash and $refs;
2050 $hash = $1;
2051 next;
2052 }
2053 next unless s{^\s*(git-svn-id:)}{$1};
2054 my ($url, $rev, $uuid) = extract_metadata($_);
Eric Wong13c823f2007-04-08 00:59:19 -07002055 if (defined $url && defined $rev) {
Sam Vilain40cb8f82007-06-30 20:56:14 +12002056 next if $max{$url} and $max{$url} < $rev;
Eric Wong13c823f2007-04-08 00:59:19 -07002057 if (my $gs = Git::SVN->find_by_url($url)) {
João Abecasis63c56022008-07-14 16:28:04 +01002058 my $c = $gs->rev_map_get($rev, $uuid);
Adam Robenb03c7a62007-04-25 11:50:32 -07002059 if ($c && $c eq $hash) {
Eric Wong13c823f2007-04-08 00:59:19 -07002060 close $fh; # break the pipe
2061 return ($url, $rev, $uuid, $gs);
Sam Vilain40cb8f82007-06-30 20:56:14 +12002062 } else {
Eric Wong060610c2007-12-08 23:27:41 -08002063 $max{$url} ||= $gs->rev_map_max;
Eric Wong13c823f2007-04-08 00:59:19 -07002064 }
2065 }
2066 }
Eric Wong905f8b72007-02-16 03:22:40 -08002067 }
Eric Wong13c823f2007-04-08 00:59:19 -07002068 command_close_pipe($fh, $ctx);
2069 (undef, undef, undef, undef);
Eric Wong905f8b72007-02-16 03:22:40 -08002070}
2071
Eric Wong733a65a2007-06-13 02:23:28 -07002072sub read_commit_parents {
2073 my ($parents, $c) = @_;
Eric Wong7b02b852007-09-08 16:33:08 -07002074 chomp(my $p = command_oneline(qw/rev-list --parents -1/, $c));
2075 $p =~ s/^($c)\s*// or die "rev-list --parents -1 $c failed!\n";
2076 @{$parents->{$c}} = split(/ /, $p);
Eric Wong733a65a2007-06-13 02:23:28 -07002077}
2078
2079sub linearize_history {
2080 my ($gs, $refs) = @_;
2081 my %parents;
2082 foreach my $c (@$refs) {
2083 read_commit_parents(\%parents, $c);
2084 }
2085
2086 my @linear_refs;
2087 my %skip = ();
2088 my $last_svn_commit = $gs->last_commit;
2089 foreach my $c (reverse @$refs) {
2090 next if $c eq $last_svn_commit;
2091 last if $skip{$c};
2092
2093 unshift @linear_refs, $c;
2094 $skip{$c} = 1;
2095
2096 # we only want the first parent to diff against for linear
2097 # history, we save the rest to inject when we finalize the
2098 # svn commit
2099 my $fp_a = verify_ref("$c~1");
2100 my $fp_b = shift @{$parents{$c}} if $parents{$c};
2101 if (!$fp_a || !$fp_b) {
2102 die "Commit $c\n",
2103 "has no parent commit, and therefore ",
2104 "nothing to diff against.\n",
2105 "You should be working from a repository ",
2106 "originally created by git-svn\n";
2107 }
2108 if ($fp_a ne $fp_b) {
2109 die "$c~1 = $fp_a, however parsing commit $c ",
2110 "revealed that:\n$c~1 = $fp_b\nBUG!\n";
2111 }
2112
2113 foreach my $p (@{$parents{$c}}) {
2114 $skip{$p} = 1;
2115 }
2116 }
2117 (\@linear_refs, \%parents);
2118}
2119
David D. Kilzere6fefa92007-11-21 11:57:18 -08002120sub find_file_type_and_diff_status {
2121 my ($path) = @_;
Dmitry Potapov107cee52008-07-21 00:14:07 +04002122 return ('dir', '') if $path eq '';
David D. Kilzere6fefa92007-11-21 11:57:18 -08002123
2124 my $diff_output =
2125 command_oneline(qw(diff --cached --name-status --), $path) || "";
2126 my $diff_status = (split(' ', $diff_output))[0] || "";
2127
2128 my $ls_tree = command_oneline(qw(ls-tree HEAD), $path) || "";
2129
2130 return (undef, undef) if !$diff_status && !$ls_tree;
2131
2132 if ($diff_status eq "A") {
2133 return ("link", $diff_status) if -l $path;
2134 return ("dir", $diff_status) if -d $path;
2135 return ("file", $diff_status);
2136 }
2137
2138 my $mode = (split(' ', $ls_tree))[0] || "";
2139
2140 return ("link", $diff_status) if $mode eq "120000";
2141 return ("dir", $diff_status) if $mode eq "040000";
2142 return ("file", $diff_status);
2143}
2144
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002145sub md5sum {
2146 my $arg = shift;
2147 my $ref = ref $arg;
Eric Wong47092c12015-01-15 08:54:22 +00002148 require Digest::MD5;
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002149 my $md5 = Digest::MD5->new();
Marcus Griep0b191382008-08-12 12:00:53 -04002150 if ($ref eq 'GLOB' || $ref eq 'IO::File' || $ref eq 'File::Temp') {
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002151 $md5->addfile($arg) or croak $!;
2152 } elsif ($ref eq 'SCALAR') {
2153 $md5->add($$arg) or croak $!;
2154 } elsif (!$ref) {
2155 $md5->add($arg) or croak $!;
2156 } else {
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07002157 fatal "Can't provide MD5 hash for unknown ref type: '", $ref, "'";
David D. Kilzerb2b3ada2007-11-20 22:43:17 -08002158 }
2159 return $md5->hexdigest();
2160}
2161
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002162sub gc_directory {
Michael G. Schwernc2768fa2012-07-26 16:22:22 -07002163 if (can_compress() && -f $_ && basename($_) eq "unhandled.log") {
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002164 my $out_filename = $_ . ".gz";
2165 open my $in_fh, "<", $_ or die "Unable to open $_: $!\n";
2166 binmode $in_fh;
2167 my $gz = Compress::Zlib::gzopen($out_filename, "ab") or
2168 die "Unable to open $out_filename: $!\n";
2169
2170 my $res;
2171 while ($res = sysread($in_fh, my $str, 1024)) {
2172 $gz->gzwrite($str) or
2173 die "Unable to write: ".$gz->gzerror()."!\n";
2174 }
Eric Wong47092c12015-01-15 08:54:22 +00002175 no warnings 'once'; # $File::Find::name would warn
Robert Allan Zeh2da9ee02009-07-19 18:00:52 -05002176 unlink $_ or die "unlink $File::Find::name: $!\n";
2177 } elsif (-f $_ && basename($_) eq "index") {
2178 unlink $_ or die "unlink $_: $!\n";
2179 }
2180}
2181
Eric Wong3397f9d2006-02-16 01:24:16 -08002182__END__
2183
2184Data structures:
2185
Eric Wong4bb9ed02007-02-03 13:29:17 -08002186
2187$remotes = { # returned by read_all_remotes()
2188 'svn' => {
2189 # svn-remote.svn.url=https://svn.musicpd.org
2190 url => 'https://svn.musicpd.org',
2191 # svn-remote.svn.fetch=mpd/trunk:trunk
2192 fetch => {
2193 'mpd/trunk' => 'trunk',
2194 },
2195 # svn-remote.svn.tags=mpd/tags/*:tags/*
2196 tags => {
2197 path => {
2198 left => 'mpd/tags',
2199 right => '',
2200 regex => qr!mpd/tags/([^/]+)$!,
2201 glob => 'tags/*',
2202 },
2203 ref => {
2204 left => 'tags',
2205 right => '',
2206 regex => qr!tags/([^/]+)$!,
2207 glob => 'tags/*',
2208 },
2209 }
2210 }
2211};
2212
Eric Wong44320b92007-01-13 22:35:53 -08002213$log_entry hashref as returned by libsvn_log_entry()
Eric Wong3397f9d2006-02-16 01:24:16 -08002214{
Eric Wong44320b92007-01-13 22:35:53 -08002215 log => 'whitespace-formatted log entry
Eric Wong3397f9d2006-02-16 01:24:16 -08002216', # trailing newline is preserved
2217 revision => '8', # integer
2218 date => '2004-02-24T17:01:44.108345Z', # commit date
2219 author => 'committer name'
2220};
2221
Eric Wong6e8548c2007-01-27 01:32:00 -08002222
2223# this is generated by generate_diff();
Eric Wong3397f9d2006-02-16 01:24:16 -08002224@mods = array of diff-index line hashes, each element represents one line
2225 of diff-index output
2226
2227diff-index line ($m hash)
2228{
2229 mode_a => first column of diff-index output, no leading ':',
2230 mode_b => second column of diff-index output,
2231 sha1_b => sha1sum of the final blob,
Eric Wongac8e0b92006-03-03 01:20:07 -08002232 chg => change type [MCRADT],
Eric Wong3397f9d2006-02-16 01:24:16 -08002233 file_a => original file name of a file (iff chg is 'C' or 'R')
2234 file_b => new/current file name of a file (any chg)
2235}
2236;
Eric Wonga5e0ced2006-06-12 15:23:48 -07002237
Eric Wonga00439a2006-06-27 19:39:13 -07002238# retval of read_url_paths{,_all}();
2239$l_map = {
2240 # repository root url
2241 'https://svn.musicpd.org' => {
2242 # repository path # GIT_SVN_ID
2243 'mpd/trunk' => 'trunk',
2244 'mpd/tags/0.11.5' => 'tags/0.11.5',
2245 },
2246}
2247
Eric Wonga5e0ced2006-06-12 15:23:48 -07002248Notes:
2249 I don't trust the each() function on unless I created %hash myself
2250 because the internal iterator may not have started at base.