]> git.ipfire.org Git - thirdparty/git.git/blame - git-remote.perl
pack-objects: Fix segfault when object count is less than thread count
[thirdparty/git.git] / git-remote.perl
CommitLineData
e194cd1e
JH
1#!/usr/bin/perl -w
2
3use Git;
4my $git = Git->repository();
5
6sub add_remote_config {
7 my ($hash, $name, $what, $value) = @_;
8 if ($what eq 'url') {
9 if (exists $hash->{$name}{'URL'}) {
10 print STDERR "Warning: more than one remote.$name.url\n";
11 }
12 $hash->{$name}{'URL'} = $value;
13 }
14 elsif ($what eq 'fetch') {
15 $hash->{$name}{'FETCH'} ||= [];
16 push @{$hash->{$name}{'FETCH'}}, $value;
17 }
8bf0e3d1
JS
18 elsif ($what eq 'push') {
19 $hash->{$name}{'PUSH'} ||= [];
20 push @{$hash->{$name}{'PUSH'}}, $value;
21 }
e194cd1e
JH
22 if (!exists $hash->{$name}{'SOURCE'}) {
23 $hash->{$name}{'SOURCE'} = 'config';
24 }
25}
26
27sub add_remote_remotes {
28 my ($hash, $file, $name) = @_;
29
30 if (exists $hash->{$name}) {
31 $hash->{$name}{'WARNING'} = 'ignored due to config';
32 return;
33 }
34
35 my $fh;
36 if (!open($fh, '<', $file)) {
37 print STDERR "Warning: cannot open $file\n";
38 return;
39 }
40 my $it = { 'SOURCE' => 'remotes' };
41 $hash->{$name} = $it;
42 while (<$fh>) {
43 chomp;
44 if (/^URL:\s*(.*)$/) {
45 # Having more than one is Ok -- it is used for push.
46 if (! exists $it->{'URL'}) {
47 $it->{'URL'} = $1;
48 }
49 }
50 elsif (/^Push:\s*(.*)$/) {
8bf0e3d1
JS
51 $it->{'PUSH'} ||= [];
52 push @{$it->{'PUSH'}}, $1;
e194cd1e
JH
53 }
54 elsif (/^Pull:\s*(.*)$/) {
55 $it->{'FETCH'} ||= [];
56 push @{$it->{'FETCH'}}, $1;
57 }
58 elsif (/^\#/) {
59 ; # ignore
60 }
61 else {
62 print STDERR "Warning: funny line in $file: $_\n";
63 }
64 }
65 close($fh);
66}
67
68sub list_remote {
69 my ($git) = @_;
70 my %seen = ();
71 my @remotes = eval {
e0d10e1c 72 $git->command(qw(config --get-regexp), '^remote\.');
e194cd1e
JH
73 };
74 for (@remotes) {
b5a40a57 75 if (/^remote\.(\S+?)\.([^.\s]+)\s+(.*)$/) {
e194cd1e
JH
76 add_remote_config(\%seen, $1, $2, $3);
77 }
78 }
79
80 my $dir = $git->repo_path() . "/remotes";
81 if (opendir(my $dh, $dir)) {
82 local $_;
83 while ($_ = readdir($dh)) {
84 chomp;
85 next if (! -f "$dir/$_" || ! -r _);
86 add_remote_remotes(\%seen, "$dir/$_", $_);
87 }
88 }
89
90 return \%seen;
91}
92
93sub add_branch_config {
94 my ($hash, $name, $what, $value) = @_;
95 if ($what eq 'remote') {
96 if (exists $hash->{$name}{'REMOTE'}) {
97 print STDERR "Warning: more than one branch.$name.remote\n";
98 }
99 $hash->{$name}{'REMOTE'} = $value;
100 }
101 elsif ($what eq 'merge') {
102 $hash->{$name}{'MERGE'} ||= [];
103 push @{$hash->{$name}{'MERGE'}}, $value;
104 }
105}
106
107sub list_branch {
108 my ($git) = @_;
109 my %seen = ();
110 my @branches = eval {
e0d10e1c 111 $git->command(qw(config --get-regexp), '^branch\.');
e194cd1e
JH
112 };
113 for (@branches) {
114 if (/^branch\.([^.]*)\.(\S*)\s+(.*)$/) {
115 add_branch_config(\%seen, $1, $2, $3);
116 }
117 }
118
119 return \%seen;
120}
121
122my $remote = list_remote($git);
123my $branch = list_branch($git);
124
125sub update_ls_remote {
126 my ($harder, $info) = @_;
127
128 return if (($harder == 0) ||
129 (($harder == 1) && exists $info->{'LS_REMOTE'}));
130
131 my @ref = map {
132 s|^[0-9a-f]{40}\s+refs/heads/||;
133 $_;
134 } $git->command(qw(ls-remote --heads), $info->{'URL'});
135 $info->{'LS_REMOTE'} = \@ref;
136}
137
7a8c9ec1 138sub list_wildcard_mapping {
e194cd1e
JH
139 my ($forced, $ours, $ls) = @_;
140 my %refs;
141 for (@$ls) {
142 $refs{$_} = 01; # bit #0 to say "they have"
143 }
144 for ($git->command('for-each-ref', "refs/remotes/$ours")) {
145 chomp;
146 next unless (s|^[0-9a-f]{40}\s[a-z]+\srefs/remotes/$ours/||);
147 next if ($_ eq 'HEAD');
148 $refs{$_} ||= 0;
149 $refs{$_} |= 02; # bit #1 to say "we have"
150 }
151 my (@new, @stale, @tracked);
152 for (sort keys %refs) {
153 my $have = $refs{$_};
154 if ($have == 1) {
155 push @new, $_;
156 }
157 elsif ($have == 2) {
158 push @stale, $_;
159 }
160 elsif ($have == 3) {
161 push @tracked, $_;
162 }
163 }
7a8c9ec1 164 return \@new, \@stale, \@tracked;
e194cd1e
JH
165}
166
7a8c9ec1 167sub list_mapping {
e194cd1e
JH
168 my ($name, $info) = @_;
169 my $fetch = $info->{'FETCH'};
170 my $ls = $info->{'LS_REMOTE'};
7a8c9ec1 171 my (@new, @stale, @tracked);
e194cd1e
JH
172
173 for (@$fetch) {
174 next unless (/(\+)?([^:]+):(.*)/);
175 my ($forced, $theirs, $ours) = ($1, $2, $3);
176 if ($theirs eq 'refs/heads/*' &&
177 $ours =~ /^refs\/remotes\/(.*)\/\*$/) {
178 # wildcard mapping
7a8c9ec1
SP
179 my ($w_new, $w_stale, $w_tracked)
180 = list_wildcard_mapping($forced, $1, $ls);
181 push @new, @$w_new;
182 push @stale, @$w_stale;
183 push @tracked, @$w_tracked;
e194cd1e
JH
184 }
185 elsif ($theirs =~ /\*/ || $ours =~ /\*/) {
186 print STDERR "Warning: unrecognized mapping in remotes.$name.fetch: $_\n";
187 }
188 elsif ($theirs =~ s|^refs/heads/||) {
189 if (!grep { $_ eq $theirs } @$ls) {
190 push @stale, $theirs;
191 }
192 elsif ($ours ne '') {
193 push @tracked, $theirs;
194 }
195 }
196 }
7a8c9ec1
SP
197 return \@new, \@stale, \@tracked;
198}
199
200sub show_mapping {
201 my ($name, $info) = @_;
202 my ($new, $stale, $tracked) = list_mapping($name, $info);
203 if (@$new) {
204 print " New remote branches (next fetch will store in remotes/$name)\n";
205 print " @$new\n";
206 }
207 if (@$stale) {
859607df 208 print " Stale tracking branches in remotes/$name (use 'git remote prune')\n";
7a8c9ec1 209 print " @$stale\n";
e194cd1e 210 }
7a8c9ec1 211 if (@$tracked) {
e194cd1e 212 print " Tracked remote branches\n";
7a8c9ec1 213 print " @$tracked\n";
e194cd1e
JH
214 }
215}
216
859607df
SP
217sub prune_remote {
218 my ($name, $ls_remote) = @_;
219 if (!exists $remote->{$name}) {
220 print STDERR "No such remote $name\n";
f4bb20cc 221 return 1;
859607df
SP
222 }
223 my $info = $remote->{$name};
224 update_ls_remote($ls_remote, $info);
225
226 my ($new, $stale, $tracked) = list_mapping($name, $info);
227 my $prefix = "refs/remotes/$name";
228 foreach my $to_prune (@$stale) {
229 my @v = $git->command(qw(rev-parse --verify), "$prefix/$to_prune");
230 $git->command(qw(update-ref -d), "$prefix/$to_prune", $v[0]);
231 }
f4bb20cc 232 return 0;
859607df
SP
233}
234
e194cd1e
JH
235sub show_remote {
236 my ($name, $ls_remote) = @_;
237 if (!exists $remote->{$name}) {
238 print STDERR "No such remote $name\n";
f4bb20cc 239 return 1;
e194cd1e
JH
240 }
241 my $info = $remote->{$name};
242 update_ls_remote($ls_remote, $info);
243
244 print "* remote $name\n";
245 print " URL: $info->{'URL'}\n";
246 for my $branchname (sort keys %$branch) {
59b2023f
JH
247 next unless (defined $branch->{$branchname}{'REMOTE'} &&
248 $branch->{$branchname}{'REMOTE'} eq $name);
e194cd1e
JH
249 my @merged = map {
250 s|^refs/heads/||;
251 $_;
252 } split(' ',"@{$branch->{$branchname}{'MERGE'}}");
253 next unless (@merged);
254 print " Remote branch(es) merged with 'git pull' while on branch $branchname\n";
255 print " @merged\n";
256 }
257 if ($info->{'LS_REMOTE'}) {
258 show_mapping($name, $info);
259 }
8bf0e3d1
JS
260 if ($info->{'PUSH'}) {
261 my @pushed = map {
262 s|^refs/heads/||;
6718f1f0 263 s|^\+refs/heads/|+|;
8bf0e3d1
JS
264 s|:refs/heads/|:|;
265 $_;
266 } @{$info->{'PUSH'}};
267 print " Local branch(es) pushed with 'git push'\n";
268 print " @pushed\n";
269 }
f4bb20cc 270 return 0;
e194cd1e
JH
271}
272
273sub add_remote {
b6f5da1e 274 my ($name, $url, $opts) = @_;
e194cd1e
JH
275 if (exists $remote->{$name}) {
276 print STDERR "remote $name already exists.\n";
277 exit(1);
278 }
e0d10e1c 279 $git->command('config', "remote.$name.url", $url);
b6f5da1e
JH
280 my $track = $opts->{'track'} || ["*"];
281
282 for (@$track) {
283 $git->command('config', '--add', "remote.$name.fetch",
38944390
JS
284 $opts->{'mirror'} ?
285 "+refs/$_:refs/$_" :
286 "+refs/heads/$_:refs/remotes/$name/$_");
b6f5da1e
JH
287 }
288 if ($opts->{'fetch'}) {
289 $git->command('fetch', $name);
290 }
291 if (exists $opts->{'master'}) {
292 $git->command('symbolic-ref', "refs/remotes/$name/HEAD",
293 "refs/remotes/$name/$opts->{'master'}");
294 }
295}
296
1918278e
TT
297sub update_remote {
298 my ($name) = @_;
299
300 my $conf = $git->config("remotes." . $name);
301 if (defined($conf)) {
302 @remotes = split(' ', $conf);
303 } elsif ($name eq 'default') {
304 undef @remotes;
305 for (sort keys %$remote) {
35c49eea 306 my $do_fetch = $git->config_bool("remote." . $_ .
1918278e 307 ".skipDefaultUpdate");
35c49eea 308 unless ($do_fetch) {
1918278e
TT
309 push @remotes, $_;
310 }
311 }
312 } else {
313 print STDERR "Remote group $name does not exists.\n";
314 exit(1);
315 }
316 for (@remotes) {
317 print "Updating $_\n";
318 $git->command('fetch', "$_");
319 }
320}
321
61136044 322sub rm_remote {
683b5679 323 my ($name) = @_;
61136044
JB
324 if (!exists $remote->{$name}) {
325 print STDERR "No such remote $name\n";
6982ccec 326 return 1;
61136044
JB
327 }
328
329 $git->command('config', '--remove-section', "remote.$name");
330
331 eval {
332 my @trackers = $git->command('config', '--get-regexp',
333 'branch.*.remote', $name);
334 for (@trackers) {
335 /^branch\.(.*)?\.remote/;
336 $git->config('--unset', "branch.$1.remote");
337 $git->config('--unset', "branch.$1.merge");
338 }
339 };
340
683b5679 341 my @refs = $git->command('for-each-ref',
61136044
JB
342 '--format=%(refname) %(objectname)', "refs/remotes/$name");
343 for (@refs) {
344 ($ref, $object) = split;
345 $git->command(qw(update-ref -d), $ref, $object);
346 }
6982ccec 347 return 0;
61136044
JB
348}
349
b6f5da1e
JH
350sub add_usage {
351 print STDERR "Usage: git remote add [-f] [-t track]* [-m master] <name> <url>\n";
352 exit(1);
e194cd1e
JH
353}
354
09ff69bb
AR
355local $VERBOSE = 0;
356@ARGV = grep {
357 if ($_ eq '-v' or $_ eq '--verbose') {
358 $VERBOSE=1;
359 0
360 } else {
361 1
362 }
363} @ARGV;
364
e194cd1e
JH
365if (!@ARGV) {
366 for (sort keys %$remote) {
09ff69bb
AR
367 print "$_";
368 print "\t$remote->{$_}->{URL}" if $VERBOSE;
369 print "\n";
e194cd1e
JH
370 }
371}
372elsif ($ARGV[0] eq 'show') {
373 my $ls_remote = 1;
374 my $i;
375 for ($i = 1; $i < @ARGV; $i++) {
376 if ($ARGV[$i] eq '-n') {
377 $ls_remote = 0;
378 }
379 else {
380 last;
381 }
382 }
383 if ($i >= @ARGV) {
384 print STDERR "Usage: git remote show <remote>\n";
385 exit(1);
386 }
f4bb20cc 387 my $status = 0;
e194cd1e 388 for (; $i < @ARGV; $i++) {
f4bb20cc 389 $status |= show_remote($ARGV[$i], $ls_remote);
e194cd1e 390 }
f4bb20cc 391 exit($status);
e194cd1e 392}
1e592d65 393elsif ($ARGV[0] eq 'update') {
1918278e
TT
394 if (@ARGV <= 1) {
395 update_remote("default");
396 exit(1);
1e592d65 397 }
1918278e
TT
398 for ($i = 1; $i < @ARGV; $i++) {
399 update_remote($ARGV[$i]);
1e592d65
TT
400 }
401}
859607df
SP
402elsif ($ARGV[0] eq 'prune') {
403 my $ls_remote = 1;
404 my $i;
405 for ($i = 1; $i < @ARGV; $i++) {
406 if ($ARGV[$i] eq '-n') {
407 $ls_remote = 0;
408 }
409 else {
410 last;
411 }
412 }
413 if ($i >= @ARGV) {
414 print STDERR "Usage: git remote prune <remote>\n";
415 exit(1);
416 }
f4bb20cc 417 my $status = 0;
859607df 418 for (; $i < @ARGV; $i++) {
f4bb20cc 419 $status |= prune_remote($ARGV[$i], $ls_remote);
859607df 420 }
f4bb20cc 421 exit($status);
859607df 422}
e194cd1e 423elsif ($ARGV[0] eq 'add') {
b6f5da1e
JH
424 my %opts = ();
425 while (1 < @ARGV && $ARGV[1] =~ /^-/) {
426 my $opt = $ARGV[1];
427 shift @ARGV;
428 if ($opt eq '-f' || $opt eq '--fetch') {
429 $opts{'fetch'} = 1;
430 next;
431 }
432 if ($opt eq '-t' || $opt eq '--track') {
433 if (@ARGV < 1) {
434 add_usage();
435 }
436 $opts{'track'} ||= [];
437 push @{$opts{'track'}}, $ARGV[1];
438 shift @ARGV;
439 next;
440 }
441 if ($opt eq '-m' || $opt eq '--master') {
442 if ((@ARGV < 1) || exists $opts{'master'}) {
443 add_usage();
444 }
445 $opts{'master'} = $ARGV[1];
446 shift @ARGV;
447 next;
448 }
38944390
JS
449 if ($opt eq '--mirror') {
450 $opts{'mirror'} = 1;
451 next;
452 }
b6f5da1e
JH
453 add_usage();
454 }
e194cd1e 455 if (@ARGV != 3) {
b6f5da1e 456 add_usage();
e194cd1e 457 }
b6f5da1e 458 add_remote($ARGV[1], $ARGV[2], \%opts);
e194cd1e 459}
61136044
JB
460elsif ($ARGV[0] eq 'rm') {
461 if (@ARGV <= 1) {
462 print STDERR "Usage: git remote rm <remote>\n";
683b5679 463 exit(1);
61136044 464 }
6982ccec 465 exit(rm_remote($ARGV[1]));
61136044 466}
c03f7757
QT
467else {
468 print STDERR "Usage: git remote\n";
469 print STDERR " git remote add <name> <url>\n";
61136044 470 print STDERR " git remote rm <name>\n";
c03f7757 471 print STDERR " git remote show <name>\n";
859607df 472 print STDERR " git remote prune <name>\n";
1918278e 473 print STDERR " git remote update [group]\n";
c03f7757
QT
474 exit(1);
475}