Git partial clone lets you fetch only the large file you need
about.gitlab.com
Git partial clone lets you fetch only the large file you need
1–10 of 88 posts
Re: Git partial clone lets you fetch only the large file you need
#2Wrong? There's a --depth option for the git fetch command which allows the user to specify how many commits they want to fetch from the repository
Re: Git partial clone lets you fetch only the large file you need
#3> One reason projects with large binary files don't use Git is because, when a Git repository is cloned, Git will download every version of every file in the repository. Wrong? There's a --depth option for the git fetch command which allows the user to specify how many commits they want to fetch from the repository
Re: Git partial clone lets you fetch only the large file you need
#4Re: Git partial clone lets you fetch only the large file you need
#5> One reason projects with large binary files don't use Git is because, when a Git repository is cloned, Git will download every version of every file in the repository. Wrong? There's a --depth option for the git fetch command which allows the user to specify how many commits they want to fetch from the repository
Re: Git partial clone lets you fetch only the large file you need
#6> One reason projects with large binary files don't use Git is because, when a Git repository is cloned, Git will download every version of every file in the repository. Wrong? There's a --depth option for the git fetch command which allows the user to specify how many commits they want to fetch from the repository
Yes, but 95% of devs, even fairly talented ones, don't really know how to use Git.
Re: Git partial clone lets you fetch only the large file you need
#7Re: Git partial clone lets you fetch only the large file you need
#8Re: Git partial clone lets you fetch only the large file you need
#9Has anyone used Git submodules to isolate large binary assets into their own repos? Seems like the obvious solution to me. You already get fine-grained control over which submodules you initialize. And, unlike Git LFS, it might be something you’re already using for other reasons.
It'd be great if they worked like Python's editable package installations.