Who can tell me the difference between ofbiz in svn and github ?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Who can tell me the difference between ofbiz in svn and github ?

gavinju
I want to know the difference between the "http://svn.apache.org/repos/asf/ofbiz/branches/release13.07" and "https://github.com/apache/ofbiz".
Who can tell me?

Thank you!
Reply | Threaded
Open this post in threaded view
|

Re: Who can tell me the difference between ofbiz in svn and github ?

Christian Geisert
Am 04.04.2014 01:26, schrieb gavinju:
> I want to know the difference between the
> "http://svn.apache.org/repos/asf/ofbiz/branches/release13.07" and
> "https://github.com/apache/ofbiz".
> Who can tell me?

I'm not sure if I understand your question but
https://github.com/apache/ofbiz is a git mirror of
http://svn.apache.org/repos/asf/ofbiz/ and contains all branches,
including the "release13.07" branch.

So you could "checkout" the whole ofbiz project with 'git clone
git://github.com/apache/ofbiz' and then switch to the branch with 'git
checkout release13.07' or just checkout the branch with
'git clone -b release13.07 git://github.com/apache/ofbiz'

Christian