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

Merge pull request #3 from pauldallen/patch-1

added a passthrough to the git.coffee script to run raw git commands aga...
This commit is contained in:
Luke Plaster 2013-11-19 03:15:37 -08:00
commit 36927e8509

View File

@ -16,6 +16,11 @@ module.exports = Git = (git_dir, dot_git) ->
exec bash, {cwd: git_dir}, callback
return bash
# Public: Passthrough for raw git commands
#
git.cmd = (command, options, args, callback) ->
git command, options, args, callback
# Public: Get a list of the remote names.
#