http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git/tree/lib/PublicInbox/GitCredential.pm
\n " ; } sub check_netrc { my ( $self , $lei ) = @_ ; # n.b. lei doesn't load ~/.netrc by default, public-inbox-watch does, # which may've been a mistake, but we have to live with it. return if ( $lei && ! $lei ->{ opt }->{ netrc }); # part of the standard library, but distributions may split it out eval { require Net :: Netrc }; if ($ @ ) { warn "W: Net::Netrc missing: $@ \n " ; return ; } if ( my $x = Net :: Netrc -> lookup ( $self ->{ host }, $self ->{ username })) { $self ->{ username...