diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2021-12-10 06:49:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-10 06:49:09 +0100 |
commit | 39f97ab86a776dd8acd58a79a660d0cfdb7068c0 (patch) | |
tree | 119b9f5b10f2fd1053c430e1891b0e33d927615b /options.go | |
parent | c71074e855b42c817c6ecb6cba7e6b62eafc08d3 (diff) | |
parent | f92011d95f98f5deea4959c7d432704a4300d3a8 (diff) | |
download | go-git-39f97ab86a776dd8acd58a79a660d0cfdb7068c0.tar.gz |
Merge pull request #410 from john-cai/jc-sparse
Worktree: Checkout, simplified sparse checkout
Diffstat (limited to 'options.go')
-rw-r--r-- | options.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -306,6 +306,8 @@ type CheckoutOptions struct { // target branch. Force and Keep are mutually exclusive, should not be both // set to true. Keep bool + // SparseCheckoutDirectories + SparseCheckoutDirectories []string } // Validate validates the fields and sets the default values. |