From 67bd9456beb70ecfdbb32a192a87ac04c6b79e20 Mon Sep 17 00:00:00 2001 From: Sylvain LE GAL Date: Tue, 2 Sep 2025 23:13:23 +0200 Subject: [PATCH] [REF] 'OU-' prefixes are used only for old OpenUpgrade versions. See : https://github.com/OCA/odoo-community.org/pull/221#issuecomment-3227193378 rational : In V13 and before, OpenUpgrade was a fork, so it was important to distinguish Odoo commits and Openupgraders commits. Nowadays, OpenUpgrade is just 'two modules', so using classic 'IMP' / 'ADD' / 'REF' / 'FIX' prefix are OK. --- docsource/090_contribute.rst | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docsource/090_contribute.rst b/docsource/090_contribute.rst index 70c65b93ea97..926ffce1aba6 100644 --- a/docsource/090_contribute.rst +++ b/docsource/090_contribute.rst @@ -77,15 +77,19 @@ Examples: all the noupdate=0 new and del ir* records, or the NEW and DEL lines f .. code-block:: shell git add . - git commit -am "[OU-ADD] account" + git commit -am "[ADD] account" git push MY_REMOTE 16.0-mig-account **Note:** - * For a fix of an existing migration scripts, use ``[OU-FIX]`` + * For a fix of an existing migration scripts, use ``[FIX]`` - * For an improvement of an existing migration scripts, use ``[OU-IMP]`` + * For an improvement of an existing migration scripts, use ``[IMP]`` + + * For old versions when OpenUpgrade was a fork (in V13 and before), + use "[OU-ADD]" / "[OU-FIX]" and "[OU-IMP]" to distinguish Odoo team commits + and Openupgraders commits. * Propose your changes to the community for review, opening a Pull Request on github.