summaryrefslogtreecommitdiff
path: root/include/git2/checkout.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2013-05-03 18:39:44 -0500
committerEdward Thomson <ethomson@microsoft.com>2013-05-03 18:54:47 -0500
commite09d18eed66d0239bea73af51e586f6ae651fe49 (patch)
tree6bd02e603cc2ca5d0a2220537265f6d3883f218c /include/git2/checkout.h
parentdfec726bbae0e699b78db8f1b63372134c8467a6 (diff)
downloadlibgit2-e09d18eed66d0239bea73af51e586f6ae651fe49.tar.gz
allow checkout to proceed when a dir to be removed is in use (win32)
Diffstat (limited to 'include/git2/checkout.h')
-rw-r--r--include/git2/checkout.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/git2/checkout.h b/include/git2/checkout.h
index d3e971b43..6798bf31c 100644
--- a/include/git2/checkout.h
+++ b/include/git2/checkout.h
@@ -134,6 +134,9 @@ typedef enum {
/** Treat pathspec as simple list of exact match file paths */
GIT_CHECKOUT_DISABLE_PATHSPEC_MATCH = (1u << 13),
+ /** Ignore directories in use, they will be left empty */
+ GIT_CHECKOUT_SKIP_LOCKED_DIRECTORIES = (1u << 18),
+
/**
* THE FOLLOWING OPTIONS ARE NOT YET IMPLEMENTED
*/