Contributors mailing list archives

contributors@odoo-community.org

Browse archives

Avatar

pandoc-*.deb cleaning in OCA repositories

by
Tecnativa. S. L., Pedro M. Baeza
- 29/07/2024 18:08:34
Due to a mistake on the tool to generate the READMES (fixed in [1]), some very big files ~30 MB each~ (with extension .deb or .dmg for Mac users) have been added both by the merge bot or by users doing a module migration.

This makes that on branch/repository clonation, or any free pull operation on any local git repository copy (of any branch) wastes a lot of bandwidth and resources, and is not ecological friendly.

Due to this, and although not ideal, we plan to force push the affected repositories (note that this has been only in 17.0 branches), following [3] technique recommended by Nils.

The drawback of doing this is that your next `git pull` operations on that branches will fail, saying about unrelated commit histories or creating a merge commit with possible conflicts.

The solution for avoiding it is to do the commands:

git fetch origin 17.0
git reset --hard origin/17.0

(being origin the OCA remote). In fact, this is the recommended way to do it in automated pulling systems.

If you don't have any strong counter-arguments, I will perform it at the end of the week. I will announce here the affected repositories after the operation.

Regards.

Follow-Ups