CheckoutSafeCheckoutStrategy=C.GIT_CHECKOUT_SAFE// Allow safe updates that cannot overwrite uncommitted data
CheckoutSafeCreateCheckoutStrategy=C.GIT_CHECKOUT_SAFE_CREATE// Allow safe updates plus creation of missing files
CheckoutForceCheckoutStrategy=C.GIT_CHECKOUT_FORCE// Allow all updates to force working directory to look like index
CheckoutAllowConflictsCheckoutStrategy=C.GIT_CHECKOUT_ALLOW_CONFLICTS// Allow checkout to make safe updates even if conflicts are found
CheckoutRemoveUntrackedCheckoutStrategy=C.GIT_CHECKOUT_REMOVE_UNTRACKED// Remove untracked files not in index (that are not ignored)
CheckoutRemoveIgnoredCheckoutStrategy=C.GIT_CHECKOUT_REMOVE_IGNORED// Remove ignored files not in index
CheckotUpdateOnlyCheckoutStrategy=C.GIT_CHECKOUT_UPDATE_ONLY// Only update existing files, don't create new ones
CheckoutDontUpdateIndexCheckoutStrategy=C.GIT_CHECKOUT_DONT_UPDATE_INDEX// Normally checkout updates index entries as it goes; this stops that
CheckoutNoRefreshCheckoutStrategy=C.GIT_CHECKOUT_NO_REFRESH// Don't refresh index/config/etc before doing checkout
CheckooutDisablePathspecMatchCheckoutStrategy=C.GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH// Treat pathspec as simple list of exact match file paths
CheckoutSkipUnmergedCheckoutStrategy=C.GIT_CHECKOUT_SKIP_UNMERGED// Allow checkout to skip unmerged files (NOT IMPLEMENTED)
CheckoutUserOursCheckoutStrategy=C.GIT_CHECKOUT_USE_OURS// For unmerged files, checkout stage 2 from index (NOT IMPLEMENTED)
CheckoutUseTheirsCheckoutStrategy=C.GIT_CHECKOUT_USE_THEIRS// For unmerged files, checkout stage 3 from index (NOT IMPLEMENTED)
CheckoutUpdateSubmodulesCheckoutStrategy=C.GIT_CHECKOUT_UPDATE_SUBMODULES// Recursively checkout submodules with same options (NOT IMPLEMENTED)
CheckoutUpdateSubmodulesIfChangedCheckoutStrategy=C.GIT_CHECKOUT_UPDATE_SUBMODULES_IF_CHANGED// Recursively checkout submodules if HEAD moved in super repo (NOT IMPLEMENTED)