如何成功地将 odoo 11 应用程序迁移到 odoo 12?
How to migrate an odoo 11 app to odoo 12 successfully?
步骤是什么?就我而言,我需要将酒店管理应用程序迁移到 odoo 12 git。
执行步骤如下:
# clone the original repository
git clone <url>
# Create the second repository on your server
# once the repository is created add the second remote
git remote add odoo12 <new url>
# upload the code to your new repo
git push odoo12 --all
如果您正在使用 GitHub,您可以简单地 fork 项目......
步骤是什么?就我而言,我需要将酒店管理应用程序迁移到 odoo 12 git。
执行步骤如下:
# clone the original repository
git clone <url>
# Create the second repository on your server
# once the repository is created add the second remote
git remote add odoo12 <new url>
# upload the code to your new repo
git push odoo12 --all
如果您正在使用 GitHub,您可以简单地 fork 项目......