This package has been deprecated

Author message:

Use gitgo

gitpull

0.0.2 • Public • Published

gitpull - fetch from and merge with another branch

Build Status

Description

Incorporate changes from a remote repository into the current branch.

Usage

Stream

var gitpull = require('gitpull')

gitpull('.')
  .on('error', function (err) {
    console.error(err.message)
  })
  .on('end', function () {
    console.log('OK')
  })

Callback

var gitpull = require('gitpull')

gitpull('.', function (err) {
  err ? console.error(err.message) : console.log('OK')  
})

Installation

install via npm:

npm install gitpull

License

MIT License

Readme

Keywords

none

Package Sidebar

Install

npm i gitpull

Weekly Downloads

1

Version

0.0.2

License

MIT

Last publish

Collaborators

  • michaelnisi