We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41f86f6 commit 4c7d363Copy full SHA for 4c7d363
pkg/integration/components/shell.go
@@ -63,6 +63,10 @@ func (s *Shell) Checkout(name string) *Shell {
63
return s.RunCommand("git checkout " + name)
64
}
65
66
+func (s *Shell) Merge(name string) *Shell {
67
+ return s.RunCommand("git merge --commit " + name)
68
+}
69
+
70
func (s *Shell) GitAdd(path string) *Shell {
71
return s.RunCommand(fmt.Sprintf("git add \"%s\"", path))
72
0 commit comments