gitclone-defaults
v2.3.8
Published
Powerful and flexible signature for `gitclone` - defaults, checks, validating, etc
Downloads
77
Readme
gitclone-defaults
Powerful and flexible signature for
gitclone
- defaults, checks, validating, etc
Please consider following this project's author, Charlike Mike Reagent, and :star: the project to show your :heart: and support.
If you have any how-to kind of questions, please read the Contributing Guide and Code of Conduct documents. For bugs reports and feature requests, please create an issue or ping @tunnckoCore at Twitter.
Project is semantically versioned & automatically released from GitHub Actions with Lerna.
| Topic | Contact | | :--------------------------------------------------------------- | ------------------------------------------------: | | Any legal or licensing questions, like private or commerical use | | | For any critical problems and security reports | | | Consulting, professional support, personal or team training | | | For any questions about Open Source, partnerships and sponsoring | |
Table of Contents
(TOC generated by verb using markdown-toc)
Install
This project requires Node.js >=10.13 (see Support & Release Policy). Install it using yarn or npm. We highly recommend to use Yarn when you think to contribute to this project.
$ yarn add gitclone-defaults
API
Generated using jest-runner-docs.
gitcloneDefaults
Creates consistent parsed object from string pattern or from listed arguments.
If owner
is object, it can accepts user
and repo
properties. Treats that
owner
argument as owner if name
is string (which is the repo
) from the
user/repo
pattern.
Signature
function(owner, name, branch, ssh)
Params
owner
{string|object} - theuser/repo
pattern or anything that parse-github-url can parsename
{string|boolean|object} - if boolean treats it asssh
branch
{string|boolean|object} - if boolean treats it asssh
ssh
{boolean|object} - useful in higher-level libs, and if it isobject
it can containsssh
returns
{object} - result object contains anything that parse-github-url contains and in addition hasssh
anddest
properties
Examples
import gitcloneDefaults from 'gitclone-defaults';
gitcloneDefaults(
{
user: 'foo',
repo: 'bar',
branch: 'zeta',
},
true,
);
gitcloneDefaults({
user: 'foo',
repo: 'bar',
branch: 'dev2',
});
gitcloneDefaults(
{
owner: 'foo',
name: 'bar',
},
{ dest: 'beta', ssh: true },
);
gitcloneDefaults(
{
owner: 'foo',
name: 'bar',
},
{ dest: 'beta' },
true,
);
gitcloneDefaults('foo/bar');
gitcloneDefaults('foo', 'bar');
gitcloneDefaults('foo', 'bar', 'dev3');
gitcloneDefaults('foo', 'bar', 'dev3', { dest: 'dest3' });
gitcloneDefaults('foo/bar', { ssh: true });
gitcloneDefaults('foo/bar', { branch: 'opts' });
gitcloneDefaults('foo/bar', { branch: 'opts' }, { ssh: true });
gitcloneDefaults('foo/bar', { branch: 'opts' }, true);
gitcloneDefaults('foo', 'bar', 'baz', true);
gitcloneDefaults('foo/bar', { branch: 'qux' }, true);
gitcloneDefaults('foo/bar#dev', { ssh: true });
gitcloneDefaults('foo/bar#qux', true);
gitcloneDefaults('foo/bar#qux', true, { dest: 'ok' });
Contributing
Guides and Community
Please read the Contributing Guide and Code of Conduct documents for advices.
For bug reports and feature requests, please join our community forum and open a thread there with prefixing the title of the thread with the name of the project if there's no separate channel for it.
Consider reading the Support and Release Policy guide if you are interested in what are the supported Node.js versions and how we proceed. In short, we support latest two even-numbered Node.js release lines.
Support the project
Become a Partner or Sponsor? :dollar: Check the OpenSource Commision (tier). :tada: You can get your company logo, link & name on this file. It's also rendered on package's page in npmjs.com and yarnpkg.com sites too! :rocket:
Not financial support? Okey! Pull requests, stars and all kind of contributions are always welcome. :sparkles:
Contributors
This project follows the all-contributors specification. Contributions of any kind are welcome!
Thanks goes to these wonderful people (emoji key), consider showing your support to them:
License
Copyright (c) 2016-present, Charlike Mike Reagent
<[email protected]>
& contributors.
Released under the MPL-2.0 License.