Add test for amending a merge commit

This commit is contained in:
Luka Markušić 2022-09-10 17:00:40 +02:00
parent 4c7d363959
commit 0141bbde0e
26 changed files with 78 additions and 1 deletions

View file

@ -64,7 +64,7 @@ func (s *Shell) Checkout(name string) *Shell {
}
func (s *Shell) Merge(name string) *Shell {
return s.RunCommand("git merge --commit " + name)
return s.RunCommand("git merge --commit --no-ff " + name)
}
func (s *Shell) GitAdd(path string) *Shell {