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:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
1
回覆
15419
瀏覽次數
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
相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
---|---|---|---|---|
|
2
1月 20
|
25209 | ||
|
10
1月 24
|
16700 | ||
|
3
4月 24
|
4428 | ||
|
2
7月 25
|
33788 | ||
|
1
7月 23
|
2425 |
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?