(t testing.TB, te testEnv, files ...string)
| 184 | } |
| 185 | |
| 186 | func gitCommit(t testing.TB, te testEnv, files ...string) { |
| 187 | cmd(t, te, "git", append([]string{"add"}, files...)...) |
| 188 | cmd(t, te, "git", "commit", "-m", "commit") |
| 189 | } |
| 190 | |
| 191 | func gitPush(t testing.TB, te testEnv, remoteName, branch string) { |
| 192 | cmd(t, te, "git", "push", "-u", remoteName, branch) |
no test coverage detected