diff options
author | Paulo Gomes <pjbgf@linux.com> | 2023-09-16 23:48:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-16 23:48:06 +0100 |
commit | 809f9df1b76258a311a20c76d346e86aca0a08f8 (patch) | |
tree | 62c405b57b3c1a07439a82b95e3387cd93cc0e27 | |
parent | c208b4d513d0e9537f2160cb6d33609c4aa01795 (diff) | |
parent | c67eceb3c2b90ce392f577f8425d066197132860 (diff) | |
download | go-git-809f9df1b76258a311a20c76d346e86aca0a08f8.tar.gz |
Merge pull request #840 from nodivbyzero/fix-pull-proxy-options
git: worktree, apply ProxyOption on Pull
-rw-r--r-- | worktree.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/worktree.go b/worktree.go index f9c01af..f8b854d 100644 --- a/worktree.go +++ b/worktree.go @@ -78,6 +78,7 @@ func (w *Worktree) PullContext(ctx context.Context, o *PullOptions) error { Force: o.Force, InsecureSkipTLS: o.InsecureSkipTLS, CABundle: o.CABundle, + ProxyOptions: o.ProxyOptions, }) updated := true |