示例#1
0
func (repo *Repository) Path() string {
	return C.GoString(C.git_repository_path(repo.git_repository))
}
示例#2
0
文件: repository.go 项目: tmc/goit
// Returns the filesystem path the repository resides at.
func (r Repository) Path() string {
	return C.GoString(C.git_repository_path(r.repo))
}