diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-11-29 12:22:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 12:22:37 +0100 |
commit | c07c778ed043429427533e2fd7549a3d54b903f1 (patch) | |
tree | 9fbd8da724791193905635a4ed789c6ddf8f39c5 /worktree.go | |
parent | 6dda959c4bda3a422a9a1c6425f92efa914c4d82 (diff) | |
parent | cbab840ef28888c2e85112b3b48294f7333ec187 (diff) | |
download | go-git-c07c778ed043429427533e2fd7549a3d54b903f1.tar.gz |
Merge pull request #665 from keybase/strib/gh-fast-forward-fetch
remote: support for non-force, fast-forward-only fetches
Diffstat (limited to 'worktree.go')
-rw-r--r-- | worktree.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/worktree.go b/worktree.go index 8ababfa..67d7f08 100644 --- a/worktree.go +++ b/worktree.go @@ -69,6 +69,7 @@ func (w *Worktree) PullContext(ctx context.Context, o *PullOptions) error { Depth: o.Depth, Auth: o.Auth, Progress: o.Progress, + Force: o.Force, }) updated := true |