1
0
mirror of https://github.com/danog/gift.git synced 2024-11-26 20:04:47 +01:00
This commit is contained in:
Maximilian Schüßler 2014-06-19 19:45:55 +02:00
parent 7e778ec1aa
commit b936392ab1

View File

@ -338,7 +338,7 @@ module.exports = class Repo
# treeish - The {String} to reset to.
# options - The {object} containing one of the following items:
# :soft - {Boolean)
# :mixed - {Boolean)
# :mixed - {Boolean) When no other option given git defaults to 'mixed'.
# :hard - {Boolean)
# :merge - {Boolean)
# :keep - {Boolean)
@ -368,7 +368,7 @@ module.exports = class Repo
options ?= {}
files ?= '.'
files = [files] if _.isString files
@git "checkout", options, _.flatten['--', files], callback
@git "checkout", options, _.flatten ['--', files], callback
# Public: Commit some code.
#