/odoo_project/ ├── odoo/ (Community source) └── enterprise/ (Enterprise source) When running Odoo, you must specify both addons paths in the configuration file or command line:
git clone https://your_odoo_email@example.com:YOUR_GITHUB_PAT@github.com/odoo/enterprise.git Or, to avoid entering credentials in the URL, you can use the standard clone and then provide the token when prompted: download odoo enterprise source code
git clone https://github.com/odoo/odoo.git -b 17.0 --depth=1 Your final directory structure should look like: download odoo enterprise source code
cd enterprise git pull origin 17.0 cd ../odoo git pull origin 17.0 After pulling, restart your Odoo server and update the modules you wish to upgrade (or run the database upgrade script if a major version change is involved). download odoo enterprise source code