Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ the aggregated directory.
merges:
- oca 8.0
target: acsone aggregated_branch_name
shell_command_after: echo 'my command'
shell_command_after: echo 'my command'

./connector-interfaces:
remotes:
Expand All @@ -134,9 +134,23 @@ the aggregated directory.
merges:
- oca 9.0
target: acsone aggregated_branch_name
shell_command_after:
- echo 'a first command'
- echo 'a second command'
shell_command_after:
- echo 'a first command'
- echo 'a second command'

A real life example: applying a patch

.. code-block:: yaml

./odoo:
remotes:
oca: https://github.com/OCA/OCB.git
acsone: git@github.com/acsone/OCB.git
merges:
- oca 9.0
target: acsone aggregated_branch_name
shell_command_after:
- git am "$(git format-patch -1 XXXXXX -o ../patches)"

Command line Usage
==================
Expand Down