diff options
Diffstat (limited to 'modules/git')
-rw-r--r-- | modules/git/repo.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/git/repo.go b/modules/git/repo.go index 4c6690b913..80f6109772 100644 --- a/modules/git/repo.go +++ b/modules/git/repo.go @@ -304,8 +304,8 @@ const ( statSizeGarbage = "size-garbage: " ) -// GetRepoSize returns disk consumption for repo in path -func GetRepoSize(repoPath string) (*CountObject, error) { +// CountObjects returns the results of git count-objects on the repoPath +func CountObjects(repoPath string) (*CountObject, error) { cmd := NewCommand("count-objects", "-v") stdout, err := cmd.RunInDir(repoPath) if err != nil { |