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

Adding stashing for untracked files

This commit is contained in:
Mike 2014-03-27 16:45:38 -06:00
parent 4e1ace0660
commit e1e6973816

View File

@ -388,7 +388,7 @@ module.exports = class Repo
@status (err, status) =>
return callback err if err
@git "stash", {}, ["save"], (err) =>
@git "stash", {}, ["save", "-u"], (err) =>
return callback err if err
@git "pull", {}, [remote, branch], (err) =>
return callback err if err