Hi !
I use Git and needed to send many many...
git init .
...
git push --force
.. to the same branch of a remote repo.
Now my .git/objects/pack is 168MB heavy for a 25MB app.
Can anyone explain me which mecanism packs objects -- is it automated when remote recieves a forced push ?
Is it dangerous for the Git repo integrity to delete that packs or are they just backup files in this case ?
If this mecanism is automated, how can I delete theses packs in the remote repo (I only can do pushes)
Thanks !