Wrap git_repository_is_bare
This commit is contained in:
parent
c7286515b8
commit
a6429763a7
|
@ -217,6 +217,10 @@ func (repo *Repository) Path() string {
|
||||||
return C.GoString(C.git_repository_path(repo.ptr))
|
return C.GoString(C.git_repository_path(repo.ptr))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (repo *Repository) IsBare() (bool) {
|
||||||
|
return C.git_repository_is_bare(repo.ptr) != 0
|
||||||
|
}
|
||||||
|
|
||||||
func (repo *Repository) Workdir() string {
|
func (repo *Repository) Workdir() string {
|
||||||
return C.GoString(C.git_repository_workdir(repo.ptr))
|
return C.GoString(C.git_repository_workdir(repo.ptr))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue