Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what's the advantage of integrating GIT LFS with artifactory [closed]

I am trying to use artifactory in my current project. Artifactory's large binaries storage / management feature made me want to try artifactory. I came across one feature in artifactory guide in below link http://www.jfrog.com/confluence/display/RTF/Git+LFS+Repositories

and I didnt understand what exactly is the advantage of integrating artifactory with GIT LFS, if GIT alone can provide feature of storing large binaries. Can anyone help me understand the advantage of this feature please?

like image 446
sugar Avatar asked Jan 07 '23 20:01

sugar


1 Answers

Adding to @joran answer, please note that your statement "GIT alone can provide feature of storing large binaries" is wrong. GIT LFS was invented because GIT alone is not doing a very good job in handeling large binaries. GIT is a source control system, that relies a lot on the fact that sources are text and versioned by content.

GIT LFS is a layer, that allows you to use familiar GIT commands while manipulating a storage, more suitable for binaries. ATM there are 4 known implementations of such a storage, out of which Artifactory is the only universal artifact repository. That means that if you need a repository for any other technology Artifactory supports, you can use a single tool rather than setting up and maintaining a whole zoo of tools for different repository types.


I am with JFrog, the company behind Bintray and [artifactory], see my profile for details and links.

like image 163
JBaruch Avatar answered Jan 25 '23 08:01

JBaruch