如何将odoo 11应用程序成功迁移到odoo 12



步骤有哪些?在我的情况下,我需要将酒店管理应用程序迁移到odoo 12 git。

点击此处查看垂直酒店的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,你可以简单地分叉项目。。。。。

最新更新