Mise à jour 22/4/25
This commit is contained in:
17
tools/update_selected_from_develop.sh
Normal file
17
tools/update_selected_from_develop.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "🔄 Passage à la branche product"
|
||||
git checkout product || exit 1
|
||||
|
||||
FILES=("Cuisine_meudon.py" "Cuisine_saclay.py" "Monitor.py" "domo91.py")
|
||||
|
||||
for file in "${FILES[@]}"; do
|
||||
if [ -f "$file" ]; then
|
||||
echo "✔️ Mise à jour de $file depuis develop"
|
||||
git checkout develop -- "$file"
|
||||
else
|
||||
echo "⏭️ Ignoré : $file n'existe pas dans product"
|
||||
fi
|
||||
done
|
||||
|
||||
echo "✅ Fichiers mis à jour avec succès depuis develop"
|
||||
Reference in New Issue
Block a user