(l, r *RebaseOperation)
| 416 | } |
| 417 | |
| 418 | func operationsAreEqual(l, r *RebaseOperation) bool { |
| 419 | return l.Exec == r.Exec && l.Type == r.Type && l.Id.String() == r.Id.String() |
| 420 | } |
| 421 | |
| 422 | func createBranch(repo *Repository, branch string) error { |
| 423 | commit, err := headCommit(repo) |
no test coverage detected
searching dependent graphs…