diff options
author | Vicent Martà <vicent@github.com> | 2013-06-21 11:41:40 -0700 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-06-21 11:41:40 -0700 |
commit | 00197c34d6385a2de3970c9f820714064c5bf27f (patch) | |
tree | 0c39eb9beb26079d3d820d8dec0324a96956d15c /include/git2 | |
parent | f2d110f168e9b4b731a857d504a193de6d0974d8 (diff) | |
parent | 36fd9e30651cf0d6b0ef58452ba2974a3544d4d1 (diff) | |
download | libgit2-00197c34d6385a2de3970c9f820714064c5bf27f.tar.gz |
Merge pull request #1664 from arrbee/checkout-deleted-with-fix
Checkout should not recreate deleted files - with fix
Diffstat (limited to 'include/git2')
-rw-r--r-- | include/git2/checkout.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/git2/checkout.h b/include/git2/checkout.h index 6798bf31c..f49e87566 100644 --- a/include/git2/checkout.h +++ b/include/git2/checkout.h @@ -183,6 +183,8 @@ typedef enum { GIT_CHECKOUT_NOTIFY_UPDATED = (1u << 2), GIT_CHECKOUT_NOTIFY_UNTRACKED = (1u << 3), GIT_CHECKOUT_NOTIFY_IGNORED = (1u << 4), + + GIT_CHECKOUT_NOTIFY_ALL = 0x0FFFFu } git_checkout_notify_t; /** Checkout notification callback function */ |