Skip to content

Commit

Permalink
add supermerge.sh - please read
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMule71 committed Jun 29, 2022
1 parent d4493d6 commit d88ac65
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.supermerge
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Lo script supermerge.sh permette di ricreare ed aggiornare il supermerge.

Leggere i commenti all'interno prima di lanciarlo.
41 changes: 41 additions & 0 deletions supermerge.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#!/bin/sh -

# Questo script serve per ricreare/aggiornare una copia locale del branch supermerge
# NOTA: non tutti i pull possono essere "puliti"
# Vanno risolti un paio di conflitti che possono riguardare file comuni aggiornati
# contemporaneamente dai vari moduli, in pratica sono .pre-commit-config.yaml e
# requirements.txt. Una volta risolti i conflitti potete rilanciare lo script.

# clone iniziale
if [ ! -x l10n-italy ]; then
git clone --single-branch --branch 14.0 https://github.com/OCA/l10n-italy
(cd l10n-italy; git checkout -b 14.0-supermerge)
fi
cd l10n-italy

set -xe
git pull --no-ff --no-edit --quiet https://github.com/odoo-italia/l10n-italy 14.0-premerge
# merged # git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1929/head
# merged # git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1930/head
# merged # git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1931/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1938/head
# merged # git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1939/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1942/head
git pull --no-ff --no-edit --quiet https://github.com/fredzamoabg/l10n-italy pull/2/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1950/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1959/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1962/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1973/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1974/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1975/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1984/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1985/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1987/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1988/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/1989/head
git pull --no-ff --no-edit --quiet -X theirs https://github.com/OCA/l10n-italy pull/1990/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/2043/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/2044/head
# merged # git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/2079/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/2080/head
git pull --no-ff --no-edit --quiet https://github.com/OCA/l10n-italy pull/2128/head

0 comments on commit d88ac65

Please sign in to comment.