1. git-clone
Clone a git repository
git-clone
Package: git-clone
Created by: jaz303
Last modified: Sat, 18 Jun 2022 08:26:38 GMT
Version: 0.2.0
License: ISC
Downloads: 626,074
Repository: https://github.com/jaz303/git-clone

Install

npm install git-clone
yarn add git-clone

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 / [email protected] ]

Released under the ISC license.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code