()
| 514 | } |
| 515 | |
| 516 | func (v *Index) HasConflicts() bool { |
| 517 | ret := C.git_index_has_conflicts(v.ptr) != 0 |
| 518 | runtime.KeepAlive(v) |
| 519 | return ret |
| 520 | } |
| 521 | |
| 522 | // FIXME: this might return an error |
| 523 | func (v *Index) CleanupConflicts() { |
no outgoing calls