diff options
author | zeripath <art27@cantab.net> | 2019-11-10 21:33:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-10 21:33:47 +0000 |
commit | ee1d64ddd1456764de692fcdeb42db1398fcf97b (patch) | |
tree | be5069e203bf34b42f1f5aee4fe387c8a6b305c6 /modules/git | |
parent | 44ec9b933afe7a7c84e18ff525f377240d8dd4f0 (diff) | |
download | gitea-ee1d64ddd1456764de692fcdeb42db1398fcf97b.tar.gz gitea-ee1d64ddd1456764de692fcdeb42db1398fcf97b.zip |
Stop using git count-objects and use raw directory size for repository (#8848)
* Migrate from git count-objects to a raw directory size
* As per @guillep2k ignore unusual files
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 { |