#!/usr/bin/perl -w

use strict;
use warnings;
use Gear::Remotes;

my $gear_remotes=Gear::Remotes->new();
$gear_remotes->fetch();

__END__

=head1	NAME

gear-remotes-fetch - fetch all remotes from .gear/upstream/remotes file

=head1	SYNOPSIS

B<gear-remotes-fetch>

=head1	DESCRIPTION

B<gear-remotes-fetch> fetches from all upstream entries listed in
file I<.gear/upstream/remotes> using git and/or git-svn.
The entries should be previously restored using B<gear-remotes-restore>.
In most cases it equates to B<git fetch upstream>.

=head1	OPTIONS

none.

=head1	AUTHOR

Written by Igor Vlasenko <viy@altlinux.org>.

=head1	COPYING

Copyright (c) 2014-2021 Igor Vlasenko, ALT Linux Team.

This is free software; you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.

=cut

