Skip to content

Commit

Permalink
Added merge method
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Mahon authored and Daniel Mahon committed Apr 22, 2012
1 parent 8e02f4e commit fb44953
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/repo.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,15 @@ module.exports = class Repo
, (err, stdout, stderr) ->
callback err

# Public: `git merge <name>`.
#
# name - String name of the source
# callback - Receives `(err)`.
#
remote_merge: (name, callback) ->
@git "erge", {}, name
, (err, stdout, stderr) ->
callback err

# Public: Get the repository's status (`git status`).
#
Expand Down

0 comments on commit fb44953

Please sign in to comment.