(cwd, args, options = {})
| 9 | const DEFAULT_INLINE_DIFF_MAX_BYTES = 256 * 1024; |
| 10 | |
| 11 | function git(cwd, args, options = {}) { |
| 12 | return runCommand("git", args, { cwd, ...options }); |
| 13 | } |
| 14 | |
| 15 | function gitChecked(cwd, args, options = {}) { |
| 16 | return runCommandChecked("git", args, { cwd, ...options }); |
no test coverage detected