diff options
Diffstat (limited to 'vendor/git2/src/lib.rs')
-rw-r--r-- | vendor/git2/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/git2/src/lib.rs b/vendor/git2/src/lib.rs index ef8cb2c9c..d2bc6f599 100644 --- a/vendor/git2/src/lib.rs +++ b/vendor/git2/src/lib.rs @@ -1465,6 +1465,8 @@ bitflags! { /// All ignored files are also stashed and then cleaned up from /// the working directory const INCLUDE_IGNORED = raw::GIT_STASH_INCLUDE_IGNORED as u32; + /// All changes in the index and working directory are left intact + const KEEP_ALL = raw::GIT_STASH_KEEP_ALL as u32; } } |