summaryrefslogtreecommitdiff
path: root/include/git2/checkout.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/checkout.h')
-rw-r--r--include/git2/checkout.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/include/git2/checkout.h b/include/git2/checkout.h
index 1d145336b..02950eb3c 100644
--- a/include/git2/checkout.h
+++ b/include/git2/checkout.h
@@ -190,13 +190,8 @@ typedef enum {
/** Recursively checkout submodules if HEAD moved in super repo (NOT IMPLEMENTED) */
GIT_CHECKOUT_UPDATE_SUBMODULES_IF_CHANGED = (1u << 17),
- /**
- * Do not do a checkout and do not fire callbacks; this is useful
- * for internal functions that will perform the checkout themselves
- * but need to pass checkout options into another function, for
- * example, `git_clone`.
- */
- GIT_CHECKOUT_NONE = (1u << 30)
+ /** Reserved for backward compatibility */
+ GIT_CHECKOUT_RESERVED = (1u << 30)
} git_checkout_strategy_t;
/**