line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::GitGot::Command::fetch; |
2
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:GENEHACK'; |
3
|
|
|
|
|
|
|
$App::GitGot::Command::fetch::VERSION = '1.336'; |
4
|
|
|
|
|
|
|
# ABSTRACT: fetch remotes for managed repositories |
5
|
15
|
|
|
15
|
|
7791
|
use 5.014; |
|
15
|
|
|
|
|
47
|
|
6
|
|
|
|
|
|
|
|
7
|
15
|
|
|
15
|
|
76
|
use App::GitGot -command; |
|
15
|
|
|
|
|
34
|
|
|
15
|
|
|
|
|
88
|
|
8
|
|
|
|
|
|
|
|
9
|
15
|
|
|
15
|
|
3895
|
use Moo; |
|
15
|
|
|
|
|
28
|
|
|
15
|
|
|
|
|
103
|
|
10
|
|
|
|
|
|
|
extends 'App::GitGot::Command'; |
11
|
15
|
|
|
15
|
|
3688
|
use namespace::autoclean; |
|
15
|
|
|
|
|
30
|
|
|
15
|
|
|
|
|
76
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub _execute { |
14
|
1
|
|
|
1
|
|
3
|
my ( $self, $opt, $args ) = @_; |
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
|
|
20
|
$self->_fetch( $self->active_repos ); |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
### FIXME docs |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |