-
-
Notifications
You must be signed in to change notification settings - Fork 655
Closed
Labels
Description
Our .git
starts to grow too fast, now. We discussed recently about that with @y0ast and repository size was ~500MB which is rather large. Now, it is 700MB:
/tmp/ignite# du -h -a -d 1
705M ./.git
4.0K ./codecov.yml
4.0K ./.gitignore
28K ./.circleci
4.0K ./CODE_OF_CONDUCT.md
4.0K ./pyproject.toml
916K ./ignite
4.0K ./requirements-dev.txt
4.0K ./CITATION
92K ./docker
1.2M ./assets
28K ./README.md
4.0K ./LICENSE
12K ./CONTRIBUTING.md
120K ./.github
4.0K ./setup.py
528K ./docs
1.2M ./tests
4.0K ./.pre-commit-config.yaml
15M ./examples
12K ./conda.recipe
4.0K ./setup.cfg
4.0K ./mypy.ini
723M .
That time I looked into ressources about reducing the size and it works locally, but it would be helpful to do that on GitHub as well.
Local compressing works:
/tmp/ignite# git gc --aggressive
/tmp/ignite# du -h -a -d 1
112M ./.git
4.0K ./codecov.yml
4.0K ./.gitignore
28K ./.circleci
4.0K ./CODE_OF_CONDUCT.md
4.0K ./pyproject.toml
916K ./ignite
4.0K ./requirements-dev.txt
4.0K ./CITATION
92K ./docker
1.2M ./assets
28K ./README.md
4.0K ./LICENSE
12K ./CONTRIBUTING.md
120K ./.github
4.0K ./setup.py
528K ./docs
1.2M ./tests
4.0K ./.pre-commit-config.yaml
15M ./examples
12K ./conda.recipe
4.0K ./setup.cfg
4.0K ./mypy.ini
131M .
but I have no idea how to apply that to remote
...
ahmedo42