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.339'; |
4
|
|
|
|
|
|
|
# ABSTRACT: fetch remotes for managed repositories |
5
|
15
|
|
|
15
|
|
11695
|
use 5.014; |
|
15
|
|
|
|
|
66
|
|
6
|
|
|
|
|
|
|
|
7
|
15
|
|
|
15
|
|
106
|
use App::GitGot -command; |
|
15
|
|
|
|
|
47
|
|
|
15
|
|
|
|
|
134
|
|
8
|
|
|
|
|
|
|
|
9
|
15
|
|
|
15
|
|
5127
|
use Moo; |
|
15
|
|
|
|
|
59
|
|
|
15
|
|
|
|
|
93
|
|
10
|
|
|
|
|
|
|
extends 'App::GitGot::Command'; |
11
|
15
|
|
|
15
|
|
4861
|
use namespace::autoclean; |
|
15
|
|
|
|
|
42
|
|
|
15
|
|
|
|
|
154
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub _execute { |
14
|
1
|
|
|
1
|
|
7
|
my ( $self, $opt, $args ) = @_; |
15
|
|
|
|
|
|
|
|
16
|
1
|
|
|
|
|
30
|
$self->_fetch( $self->active_repos ); |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
### FIXME docs |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |