1
0
mirror of https://github.com/danog/gift.git synced 2024-11-30 04:19:37 +01:00

Merge branch 'master' of github.com:sentientwaffle/gift

This commit is contained in:
sentientwaffle 2012-04-25 11:14:30 -06:00
commit 6b759b7fbf

View File

@ -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`).
#