5 my $git = Git
->repository();
7 sub add_remote_config
{
8 my ($hash, $name, $what, $value) = @_;
10 # Having more than one is Ok -- it is used for push.
11 if (! exists $hash->{'URL'}) {
12 $hash->{$name}{'URL'} = $value;
15 elsif ($what eq 'fetch') {
16 $hash->{$name}{'FETCH'} ||= [];
17 push @
{$hash->{$name}{'FETCH'}}, $value;
19 elsif ($what eq 'push') {
20 $hash->{$name}{'PUSH'} ||= [];
21 push @
{$hash->{$name}{'PUSH'}}, $value;
23 if (!exists $hash->{$name}{'SOURCE'}) {
24 $hash->{$name}{'SOURCE'} = 'config';
28 sub add_remote_remotes
{
29 my ($hash, $file, $name) = @_;
31 if (exists $hash->{$name}) {
32 $hash->{$name}{'WARNING'} = 'ignored due to config';
37 if (!open($fh, '<', $file)) {
38 print STDERR
"Warning: cannot open $file\n";
41 my $it = { 'SOURCE' => 'remotes' };
45 if (/^URL:\s*(.*)$/) {
46 # Having more than one is Ok -- it is used for push.
47 if (! exists $it->{'URL'}) {
51 elsif (/^Push:\s*(.*)$/) {
53 push @
{$it->{'PUSH'}}, $1;
55 elsif (/^Pull:\s*(.*)$/) {
56 $it->{'FETCH'} ||= [];
57 push @
{$it->{'FETCH'}}, $1;
63 print STDERR
"Warning: funny line in $file: $_\n";
73 $git->command(qw(config --get-regexp), '^remote\.');
76 if (/^remote\.(\S+?)\.([^.\s]+)\s+(.*)$/) {
77 add_remote_config
(\
%seen, $1, $2, $3);
81 my $dir = $git->repo_path() . "/remotes";
82 if (opendir(my $dh, $dir)) {
84 while ($_ = readdir($dh)) {
86 next if (! -f
"$dir/$_" || ! -r _
);
87 add_remote_remotes
(\
%seen, "$dir/$_", $_);
94 sub add_branch_config
{
95 my ($hash, $name, $what, $value) = @_;
96 if ($what eq 'remote') {
97 if (exists $hash->{$name}{'REMOTE'}) {
98 print STDERR
"Warning: more than one branch.$name.remote\n";
100 $hash->{$name}{'REMOTE'} = $value;
102 elsif ($what eq 'merge') {
103 $hash->{$name}{'MERGE'} ||= [];
104 push @
{$hash->{$name}{'MERGE'}}, $value;
111 my @branches = eval {
112 $git->command(qw(config --get-regexp), '^branch\.');
115 if (/^branch\.([^.]*)\.(\S*)\s+(.*)$/) {
116 add_branch_config
(\
%seen, $1, $2, $3);
123 my $remote = list_remote
($git);
124 my $branch = list_branch
($git);
126 sub update_ls_remote
{
127 my ($harder, $info) = @_;
129 return if (($harder == 0) ||
130 (($harder == 1) && exists $info->{'LS_REMOTE'}));
132 my @ref = map { s
|refs
/heads/||; $_; } keys %{$git->remote_refs($info->{'URL'}, [ 'heads' ])};
133 $info->{'LS_REMOTE'} = \
@ref;
136 sub list_wildcard_mapping
{
137 my ($forced, $ours, $ls) = @_;
140 $refs{$_} = 01; # bit #0 to say "they have"
142 for ($git->command('for-each-ref', "refs/remotes/$ours")) {
144 next unless (s
|^[0-9a
-f
]{40}\s
[a
-z
]+\srefs
/remotes
/$ours/||);
145 next if ($_ eq 'HEAD');
147 $refs{$_} |= 02; # bit #1 to say "we have"
149 my (@new, @stale, @tracked);
150 for (sort keys %refs) {
151 my $have = $refs{$_};
162 return \
@new, \
@stale, \
@tracked;
166 my ($name, $info) = @_;
167 my $fetch = $info->{'FETCH'};
168 my $ls = $info->{'LS_REMOTE'};
169 my (@new, @stale, @tracked);
172 next unless (/(\+)?([^:]+):(.*)/);
173 my ($forced, $theirs, $ours) = ($1, $2, $3);
174 if ($theirs eq 'refs/heads/*' &&
175 $ours =~ /^refs\/remotes\
/(.*)\/\
*$/) {
177 my ($w_new, $w_stale, $w_tracked)
178 = list_wildcard_mapping
($forced, $1, $ls);
180 push @stale, @
$w_stale;
181 push @tracked, @
$w_tracked;
183 elsif ($theirs =~ /\*/ || $ours =~ /\*/) {
184 print STDERR
"Warning: unrecognized mapping in remotes.$name.fetch: $_\n";
186 elsif ($theirs =~ s
|^refs
/heads/||) {
187 if (!grep { $_ eq $theirs } @
$ls) {
188 push @stale, $theirs;
190 elsif ($ours ne '') {
191 push @tracked, $theirs;
195 return \
@new, \
@stale, \
@tracked;
199 my ($name, $info) = @_;
200 my ($new, $stale, $tracked) = list_mapping
($name, $info);
202 print " New remote branches (next fetch will store in remotes/$name)\n";
206 print " Stale tracking branches in remotes/$name (use 'git remote prune')\n";
210 print " Tracked remote branches\n";
211 print " @$tracked\n";
216 my ($name, $ls_remote) = @_;
217 if (!exists $remote->{$name}) {
218 print STDERR
"No such remote $name\n";
221 my $info = $remote->{$name};
222 update_ls_remote
($ls_remote, $info);
224 my ($new, $stale, $tracked) = list_mapping
($name, $info);
225 my $prefix = "refs/remotes/$name";
226 foreach my $to_prune (@
$stale) {
227 my @v = $git->command(qw(rev-parse --verify), "$prefix/$to_prune");
228 $git->command(qw(update-ref -d), "$prefix/$to_prune", $v[0]);
234 my ($name, $ls_remote) = @_;
235 if (!exists $remote->{$name}) {
236 print STDERR
"No such remote $name\n";
239 my $info = $remote->{$name};
240 update_ls_remote
($ls_remote, $info);
242 print "* remote $name\n";
243 print " URL: $info->{'URL'}\n";
244 for my $branchname (sort keys %$branch) {
245 next unless (defined $branch->{$branchname}{'REMOTE'} &&
246 $branch->{$branchname}{'REMOTE'} eq $name);
250 } split(' ',"@{$branch->{$branchname}{'MERGE'}}");
251 next unless (@merged);
252 print " Remote branch(es) merged with 'git pull' while on branch $branchname\n";
255 if ($info->{'LS_REMOTE'}) {
256 show_mapping
($name, $info);
258 if ($info->{'PUSH'}) {
264 } @
{$info->{'PUSH'}};
265 print " Local branch(es) pushed with 'git push'\n";
272 my ($name, $url, $opts) = @_;
273 if (exists $remote->{$name}) {
274 print STDERR
"remote $name already exists.\n";
277 $git->command('config', "remote.$name.url", $url);
278 my $track = $opts->{'track'} || ["*"];
281 $git->command('config', '--add', "remote.$name.fetch",
284 "+refs/heads/$_:refs/remotes/$name/$_");
286 if ($opts->{'fetch'}) {
287 $git->command('fetch', $name);
289 if (exists $opts->{'master'}) {
290 $git->command('symbolic-ref', "refs/remotes/$name/HEAD",
291 "refs/remotes/$name/$opts->{'master'}");
299 my $conf = $git->config("remotes." . $name);
300 if (defined($conf)) {
301 @remotes = split(' ', $conf);
302 } elsif ($name eq 'default') {
304 for (sort keys %$remote) {
305 my $do_fetch = $git->config_bool("remote." . $_ .
306 ".skipDefaultUpdate");
312 print STDERR
"Remote group $name does not exist.\n";
316 print "Updating $_\n";
317 $git->command('fetch', "$_");
323 if (!exists $remote->{$name}) {
324 print STDERR
"No such remote $name\n";
328 $git->command('config', '--remove-section', "remote.$name");
331 my @trackers = $git->command('config', '--get-regexp',
332 'branch.*.remote', $name);
334 /^branch\.(.*)?\.remote/;
335 $git->config('--unset', "branch.$1.remote");
336 $git->config('--unset', "branch.$1.merge");
340 my @refs = $git->command('for-each-ref',
341 '--format=%(refname) %(objectname)', "refs/remotes/$name");
343 my ($ref, $object) = split;
344 $git->command(qw(update-ref -d), $ref, $object);
350 print STDERR
"Usage: git remote add [-f] [-t track]* [-m master] <name> <url>\n";
356 if ($_ eq '-v' or $_ eq '--verbose') {
365 for (sort keys %$remote) {
367 print "\t$remote->{$_}->{URL}" if $VERBOSE;
371 elsif ($ARGV[0] eq 'show') {
374 for ($i = 1; $i < @ARGV; $i++) {
375 if ($ARGV[$i] eq '-n') {
383 print STDERR
"Usage: git remote show <remote>\n";
387 for (; $i < @ARGV; $i++) {
388 $status |= show_remote
($ARGV[$i], $ls_remote);
392 elsif ($ARGV[0] eq 'update') {
394 update_remote
("default");
397 for (my $i = 1; $i < @ARGV; $i++) {
398 update_remote
($ARGV[$i]);
401 elsif ($ARGV[0] eq 'prune') {
404 for ($i = 1; $i < @ARGV; $i++) {
405 if ($ARGV[$i] eq '-n') {
413 print STDERR
"Usage: git remote prune <remote>\n";
417 for (; $i < @ARGV; $i++) {
418 $status |= prune_remote
($ARGV[$i], $ls_remote);
422 elsif ($ARGV[0] eq 'add') {
424 while (1 < @ARGV && $ARGV[1] =~ /^-/) {
427 if ($opt eq '-f' || $opt eq '--fetch') {
431 if ($opt eq '-t' || $opt eq '--track') {
435 $opts{'track'} ||= [];
436 push @
{$opts{'track'}}, $ARGV[1];
440 if ($opt eq '-m' || $opt eq '--master') {
441 if ((@ARGV < 1) || exists $opts{'master'}) {
444 $opts{'master'} = $ARGV[1];
448 if ($opt eq '--mirror') {
457 add_remote
($ARGV[1], $ARGV[2], \
%opts);
459 elsif ($ARGV[0] eq 'rm') {
461 print STDERR
"Usage: git remote rm <remote>\n";
464 exit(rm_remote
($ARGV[1]));
467 print STDERR
"Usage: git remote\n";
468 print STDERR
" git remote add <name> <url>\n";
469 print STDERR
" git remote rm <name>\n";
470 print STDERR
" git remote show <name>\n";
471 print STDERR
" git remote prune <name>\n";
472 print STDERR
" git remote update [group]\n";