()
| 265 | } |
| 266 | |
| 267 | func (sub *Submodule) Ignore() SubmoduleIgnore { |
| 268 | o := C.git_submodule_ignore(sub.ptr) |
| 269 | runtime.KeepAlive(sub) |
| 270 | return SubmoduleIgnore(o) |
| 271 | } |
| 272 | |
| 273 | func (c *SubmoduleCollection) SetIgnore(submodule string, ignore SubmoduleIgnore) error { |
| 274 | csubmodule := C.CString(submodule) |
nothing calls this directly
no test coverage detected