Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Odoo.sh - How to update OCA Modules (Submodules) in Odoo.sh?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
modulesupdateodoo.shsubmodules
2 Réponses
20019 Vues
Avatar
wizardz

How can you update the modules that you add as submodules in odoo.sh ?

0
Avatar
Ignorer
Avatar
Yenthe Van Ginneken (Mainframe Monkey)
Meilleure réponse

Hi Wizardz,

You can't do this on Odoo.sh as far as I'm aware (atleast not at the moment).

You should update the submodule from the command line and commit this to Github. The moment your commit is made to Github it will be automatically detected by Odoo.sh. Odoo.sh will then pick up the commit and load it on your database. You can update the submodule by the command with a git submodule update:

git submodule update --remote

Then commit the update so it gets updated on Github. For example:

git add -A && git commit -m "[UPD] submodule: update submodule to latest remote rev"

Odoo.sh will handle the rest out of the box for you.


Regards,

Yenthe

1
Avatar
Ignorer
wizardz
Auteur

the problem is, that everytime I try to update the submodules, I get this:

Cloning into 'C:/devtest/OCA/l10n-switzerland'...

Permission denied (publickey).

fatal: Could not read from remote repository.

Please make sure you have the correct access rights

and the repository exists.

fatal: clone of 'git@github.com:OCA/l10n-switzerland.git' into submodule path 'C:/devtest/OCA/l10n-switzerland' failed

Failed to clone 'OCA/l10n-switzerland'. Retry scheduled

Cloning into 'C:/devtest/OCA/l10n-switzerland'...

Permission denied (publickey).

fatal: Could not read from remote repository.

I have set the publickey and everything...

Yenthe Van Ginneken (Mainframe Monkey)

That means you haven't properly configured your (private) submodules for Odoo.sh. Have a look at my tutorial at https://www.odoo.yenthevg.com/configuring-submodules-odoo-sh/

Hello Yenthe !

I tried your solution but I have this problem :

tarbib-no-grouping-master-1464233 [production/v13.0]:~/repositories/git_github.com_oca_purchase-workflow.git$ git submodule update --remote

tarbib-no-grouping-master-1464233 [production/v13.0]:~/repositories/git_github.com_oca_purchase-workflow.git$ git add -A && git commit -m "[UPD] submodule: update submodule to latest remote rev"

fatal: Unable to create '/home/odoo/repositories/git_github.com_oca_purchase-workflow.git/.git/index.lock': Read-only file system

Have you manged to update OCA submodules lately?

thanks

Avatar
Robert Förster
Meilleure réponse

Hi wizardz,

I know your question is rather old but I had the same issue, struggled to resolve it and couldn't find any answer online.

The underlying issue was that I usually connect my local git-repositories via the "Https"-Clone-Option to Github but Submodules use the SSH-option. So you would have to set up an SSH-Key in your private Git-Repository and also set that key in your git-client. We are using Tortoise-Git and I've created a short article on our blog-page to describe how we did it: https://www.suppliot.eu/blog/our-blog-1/post/using-and-updating-submodules-with-git-and-odoo-sh-34

-Robert

0
Avatar
Ignorer
wizardz
Auteur

thank you for your commit, I had exactly the problem with the ssh-key and after I added one I had no problems anymore.

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
unable to install Odoo module .
modules odoo.sh
Avatar
Avatar
Avatar
2
mars 24
3159
Update all odoo modules at once Résolu
modules update
Avatar
Avatar
1
mars 23
7104
Cant modify source code Odoo V16 !!
modules update
Avatar
Avatar
2
févr. 23
4116
"update modules list" failure
modules update
Avatar
Avatar
1
mars 15
5533
Cannot Update Modules - Odoo v8
modules update
Avatar
Avatar
1
mars 15
5745
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now