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
الرد
15409
أدوات العرض
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
يناير 20
|
25200 | ||
|
10
يناير 24
|
16677 | ||
Stuck at Odoo database manager
تم الحل
|
|
3
أبريل 24
|
4410 | |
|
2
يوليو 25
|
33770 | ||
|
1
يوليو 23
|
2418 |
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?