(worktreePath: string)
| 47 | * Uses longer timeout suitable for fetch, push, pull operations. |
| 48 | */ |
| 49 | export function createGitForNetwork(worktreePath: string): SimpleGit { |
| 50 | return createGit(worktreePath, GIT_TIMEOUTS.NETWORK); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Creates a simple-git instance configured for long-running operations. |
no test coverage detected