Invoke Git with enabled LFS filters
(args ...string)
| 218 | |
| 219 | // Invoke Git with enabled LFS filters |
| 220 | func git(args ...string) (*subprocess.Cmd, error) { |
| 221 | return subprocess.ExecCommand("git", args...) |
| 222 | } |
| 223 | |
| 224 | func gitSimple(args ...string) (string, error) { |
| 225 | return subprocess.SimpleExec("git", args...) |
no test coverage detected