How to clone just 7.0 branch of odoo to my local server ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
1
Responder
15312
Vistas
git clone https://www.github.com/odoo/odoo --branch 7.0
This will download the 7.0 branch.
Is it slow ? if ssh connections are persistent and shared it will increase the speed of cloning connection around 5x time. (in my case it was 50kb before after this it downloaded with 800Kb)
add
~/.ssh/config
ControlMaster auto
ControlPath /tmp/%r@%h:%p
ControlPersist yes
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
2
ene 20
|
25092 | ||
|
10
ene 24
|
16583 | ||
Stuck at Odoo database manager
Resuelto
|
|
3
abr 24
|
4275 | |
|
2
jul 25
|
33578 | ||
|
1
jul 23
|
2361 |
if you want to use to ocb server (using community backports) that should be: git clone https://github.com/OCA/OCB --branch 7.0 right?