Skip to content

Commit

Permalink
Merge branch 'master' of github.com:sentientwaffle/gift
Browse files Browse the repository at this point in the history
  • Loading branch information
sentientwaffle committed Apr 25, 2012
2 parents 75114c5 + aacfe2a commit 6b759b7
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)`.
#
merge: (name, callback) ->
@git "merge", {}, name
, (err, stdout, stderr) ->
callback err

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

0 comments on commit 6b759b7

Please sign in to comment.