Showing posts with label check repo size. Show all posts
Showing posts with label check repo size. Show all posts

4/12/2024

Check amout of size with consider .gitignore files.

Put this cmd. 


git ls-files \

  | xargs du -ch \

  | grep total$



Thank you!