Here is an example scriptto programmatically create a remote repository if it does not exist in specified user's assets. It uses Net::GitHub.

use strict; use warnings; # by bliako on 27/05/2019 # creates a new git repository if it does not exist # requires git username, login and password which is # read from command line. use Net::GitHub; use Data::Dumper; my $github_reponame = 'new-repo'; my $github_login = '<like-an-email>'; my $github_username = '...'; print "$0 : enter password for '$github_login': "; my $github_password = <STDIN>; chomp($github_password); my $git = Net::GitHub->new( login => $github_username, pass => $github_password ); my $reposinfo = $git->repos->list($github_username); print Dumper($reposinfo); my %reposlist = map { lc $_->{'full_name'} =~ s|^${github_username}/|| +r => $_ } @$reposinfo; print "Repos: ".join(",", keys %reposlist)."\n"; if( ! defined $reposlist{lc $github_reponame} ){ print "$0 : creating new repository '$github_reponame' ...\n"; my $ret = undef; eval { $ret = $git->repos->create({ name => $github_reponame, description => "change me", }) }; if( $@ ){ print STDERR "$0 : failed to create repository '$github_ +reponame' : $@\n"; exit(1) } }

In reply to Re: git-push target for Makefile (via ExtUtils::MakeMaker) by bliako
in thread git-push target for Makefile (via ExtUtils::MakeMaker) by bliako

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.