NAME
Dist::Zilla::Plugin::GitHub::Create - Create GitHub repo on dzil new
VERSION
version 0.03
SYNOPSIS
Configure git with your GitHub credentials:
$ git config --global github.user LoginName
$ git config --global github.token GitHubToken
then, in your profile.ini:
[GitHub::Create]
public = 1
DESCRIPTION
This Dist::Zilla plugin creates a new git repository on GitHub.com when a new distribution is created with dzil new
.
ATTRIBUTES
login
-
The GitHub login name. If not provided, will be used the value of
github.user
from the Git configuration, to set it, type:$ git config --global github.user LoginName
token
-
The GitHub API token for the user. If not provided, will be used the value of
github.token
from the Git configuration, to set it, type:$ git config --global github.token GitHubToken
public
-
Create a public repository if this is '1' (default), else create a private one.
AUTHOR
Alessandro Ghedini <alexbio@cpan.org>
LICENSE AND COPYRIGHT
Copyright 2011 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.