1

I have just started using Google Cloud Source Repository and after pushing a big project I can't seem to know how many GBs the project is taking on Google cloud.

2 Answers2

0

I didn't find how to see this on the console, but your can run this command

gcloud source repos describe <repoName>

You have a line with the size of the repo, in byte

size: '86831633'
guillaume blaquiere
  • 66,369
  • 2
  • 47
  • 76
0

Never mind, found an answer.

git count-objects -vH (see answer by @VonC)

Found it here.