Giter Site home page Giter Site logo

citizenos / node-git-clone-or-pull Goto Github PK

View Code? Open in Web Editor NEW

This project forked from strugee/node-git-clone-or-pull

0.0 1.0 0.0 445 KB

Ensure a git repo exists on disk and that it's up-to-date

License: GNU Lesser General Public License v3.0

JavaScript 100.00%

node-git-clone-or-pull's Introduction

git-clone-or-pull

Build Status Coverage Status npm Greenkeeper badge

Ensure a git repo exists on disk and that it's up-to-date

Installation

npm install git-clone-or-pull

Node 4.x or greater is required. The module will probably work on Node 0.12, but the tests do not. So I wouldn't count on it.

Usage

Simple example:

var cloneOrPull = require('git-clone-or-pull');
var path = require('path');

cloneOrPull('git://github.com/strugee/node-git-clone-or-pull.git', path.join(process.cwd(), 'node-git-clone-or-pull'), function(err) {
    if (err) throw err;

    // Use repo
});

The cloneOrPull() function takes three arguments. In order:

url (String) - the URL to clone from

opts (String or Object) the pathname to clone to if a String, otherwise an object containing module options (see "Options" below)

callback (Function) function callback that will be called upon completion of the clone or pull. If there is an error, it will be passed as the first argument.

Options

path (String) - the pathname to clone to. If a String is provided instead of an options Object, it will be used as path's value.

implementation (String) - the implementation to use; defaults to nodegit in most cases (see "Implementations" below)

branch (String) - the branch to use; defaults to master (even if the default upstream branch is something else)

Implementations

  • nodegit uses NodeGit, the libgit2 bindings for Node.
  • subprocess is based on spawning git subprocesses (which means you need a git binary installed).

Implementation is determined with the following algorithm:

  1. If opts.implementation exists its value will be used as the implementation; if that implementation is unavailable an error will be returned to the callback
  2. If NodeGit can be loaded, the implementation will be nodegit
  3. If git --version returns an exit code of 0, the implementation will be subprocess
  4. No implementation can be found and an error will be returned to the callback

Each implementation has its negatives: nodegit makes installation slightly more complicated. subprocess works on most systems - but it requires an external binary.

License

LGPL 3.0+

Author

AJ Jordan [email protected]

node-git-clone-or-pull's People

Contributors

strugee avatar greenkeeper[bot] avatar tiblu avatar ilmartyrk avatar davej avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.