()
| 685 | } |
| 686 | |
| 687 | func (repo *Repository) IsBare() bool { |
| 688 | ret := C.git_repository_is_bare(repo.ptr) != 0 |
| 689 | runtime.KeepAlive(repo) |
| 690 | return ret |
| 691 | } |
| 692 | |
| 693 | func (repo *Repository) Workdir() string { |
| 694 | s := C.GoString(C.git_repository_workdir(repo.ptr)) |
no outgoing calls