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
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
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
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
2
Jan 20
|
25218 | ||
|
10
Jan 24
|
16717 | ||
Stuck at Odoo database manager
Diselesaikan
|
|
3
Apr 24
|
4449 | |
Can't select PostgreSql when installing odoo
Diselesaikan
|
|
2
Jul 25
|
33815 | |
|
1
Jul 23
|
2438 |
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?