summaryrefslogtreecommitdiff
path: root/src/worktree.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/worktree.c')
-rw-r--r--src/worktree.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/worktree.c b/src/worktree.c
index e08d6d401..caf4c58ed 100644
--- a/src/worktree.c
+++ b/src/worktree.c
@@ -405,7 +405,10 @@ int git_worktree_add(git_worktree **out, git_repository *repo,
goto out;
/* Checkout worktree's HEAD */
- coopts.checkout_strategy = GIT_CHECKOUT_FORCE;
+ if (opts != NULL)
+ memcpy(&coopts, &wtopts.checkout_opts, sizeof(coopts));
+ else
+ coopts.checkout_strategy = GIT_CHECKOUT_FORCE;
if ((err = git_checkout_head(wt, &coopts)) < 0)
goto out;