-6

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

1 Answers1

1

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.....

CodeWizard
  • 128,036
  • 21
  • 144
  • 167