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
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
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
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
2
sty 20
|
25051 | ||
|
10
sty 24
|
16529 | ||
Stuck at Odoo database manager
Rozwiązane
|
|
3
kwi 24
|
4208 | |
Can't select PostgreSql when installing odoo
Rozwiązane
|
|
2
lip 25
|
33523 | |
|
1
lip 23
|
2329 |
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?