Search code examples
gitmigrationodooportingodoo-11

How to migrate an odoo 11 app to odoo 12 successfully?


What are the steps ? In my case i need to migrate the hotel management app to odoo 12 git.

click here for the git repository of vertical hotel


Solution

  • Here are the steps to do it:

    # 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 
    

    If you are using GitHub you can simply fork the project.....