diff options
Diffstat (limited to 'include/git2/clone.h')
-rw-r--r-- | include/git2/clone.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/git2/clone.h b/include/git2/clone.h index ceb1a53bb..71e8e72f2 100644 --- a/include/git2/clone.h +++ b/include/git2/clone.h @@ -23,6 +23,12 @@ */ GIT_BEGIN_DECL +typedef enum { + GIT_CLONE_LOCAL_AUTO, + GIT_CLONE_LOCAL, + GIT_CLONE_NO_LOCAL, +} git_clone_local_t; + /** * Clone options structure * @@ -57,6 +63,7 @@ typedef struct git_clone_options { int bare; int ignore_cert_errors; + git_clone_local_t local; const char *remote_name; const char* checkout_branch; git_signature *signature; |