Diff returns a list of changes between this tree and the provided one
(to *Tree)
| 419 | |
| 420 | // Diff returns a list of changes between this tree and the provided one |
| 421 | func (t *Tree) Diff(to *Tree) (Changes, error) { |
| 422 | return t.DiffContext(context.Background(), to) |
| 423 | } |
| 424 | |
| 425 | // DiffContext returns a list of changes between this tree and the provided one |
| 426 | // Error will be returned if context expires. Provided context must be non nil. |