git-clone

Clone a git repository

ISC 6 个版本
安装
npm install git-clone
yarn add git-clone
pnpm add git-clone
bun add git-clone
README

git-clone

Clone a git repository via git shell command.

Installation

Install:

$ npm install git-clone

To use the original callback-based API:

const clone = require('git-clone');

As of 0.2.0 there's a promised-based API for use with async/await:

const clone = require('git-clone/promise');

API

Common Options

  • git: path to git binary; default: git (expected to be in your $PATH)
  • shallow: when true, clone with depth 1
  • checkout: revision/branch/tag to check out after clone
  • args: additional array of arguments to pass to git clone

Callback

clone(repo, targetPath, [options], cb)

Clone repo to targetPath, calling cb on completion; any error that occurred will be passed as the first argument. If no error is passed the git clone operation was successful.

Promise

async clone(repo, targetPath, [options])

Clone repo to targetPath, throwing an exception on failure.

Contributors

© 2014-2021 Jason Frame & Contributors [ @jaz303 / jason@onehackoranother.com ]

Released under the ISC license.

版本列表
0.2.0 2021-09-28
0.1.0 2015-03-01
0.0.4 2014-06-18
0.0.3 2014-06-10
0.0.2 2014-06-10
0.0.1 2014-06-10