diff options
Diffstat (limited to 'worktree.go')
-rw-r--r-- | worktree.go | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/worktree.go b/worktree.go index 1c89a02..73e638a 100644 --- a/worktree.go +++ b/worktree.go @@ -72,11 +72,13 @@ func (w *Worktree) PullContext(ctx context.Context, o *PullOptions) error { } fetchHead, err := remote.fetch(ctx, &FetchOptions{ - RemoteName: o.RemoteName, - Depth: o.Depth, - Auth: o.Auth, - Progress: o.Progress, - Force: o.Force, + RemoteName: o.RemoteName, + Depth: o.Depth, + Auth: o.Auth, + Progress: o.Progress, + Force: o.Force, + InsecureSkipTLS: o.InsecureSkipTLS, + CABundle: o.CABundle, }) updated := true |