| 29 | ) |
| 30 | |
| 31 | type CloneRepoOptions struct { |
| 32 | Path string |
| 33 | Storage billy.Filesystem |
| 34 | |
| 35 | RepoURL string |
| 36 | RepoAuth transport.AuthMethod |
| 37 | Progress sideband.Progress |
| 38 | Insecure bool |
| 39 | SingleBranch bool |
| 40 | ThinPack bool |
| 41 | Depth int |
| 42 | CABundle []byte |
| 43 | ProxyOptions transport.ProxyOptions |
| 44 | } |
| 45 | |
| 46 | // CloneRepo will clone the repository at the given URL into the given path. |
| 47 | // If a repository is already initialized at the given path, it will not |
nothing calls this directly
no outgoing calls
no test coverage detected