Questions tagged [git-lfs]

Questions about Git Large File Storage. LFS extends Git (but is not itself Git); use this tag for git-lfs questions instead of the plain Git tag. Do not confuse this with the "Linux-from-scratch" LFS tag.

An open source Git extension for versioning large files.

Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.

git lfs

https://git-lfs.github.com/

971 questions
0
votes
0 answers

Xcode error. Can't build iOS app with Mapbox API cloned from my Git rep

Unfortunately me and my small team don't have a lot of experience in iOS developing and we really need some help. I have created git rep with our project, also I use Git LFS for files from Mapbox API. But then I try to clone my project from rep and…
0
votes
1 answer

How to lock a file with git on BitBucket?

I am dealing with large files and have done git lfs install and followed all the steps listed here. But when I actually want to lock a file, i.e. git lfs lock I am getting the following error: Lock failed: Repository or object not…
osterburg
  • 447
  • 5
  • 24
0
votes
1 answer

Deploy React app using with large files using GitHub Pages

The issue I am running into is because I am using files over 100mb and this exceeds GitHub's file size limit of 100.00 MB. I am trying to remedy this by using Git Large File Storage. I go through the process and am able to track the files via Git…
0
votes
1 answer

GIT LFS "failed to push some refs to"

I have a current GIT repository hosted via TFS. We are planning on migrating to LFS to manage some large binaries that are stored via source control. I am cloning the TFS repository to my local PC, and then cloning the clone so that I can…
BFlat
  • 28
  • 6
0
votes
1 answer

Git Performance (Load test before enabling LFS on Bitbucket Server)

I am doing a Bitbucket Load test before enabling LFS in production. Below are the Stats: We Simulated Production load on stage instance & I had selected a 30 MB repo to clone to capture time before performing LFS operations & after enabling LFS…
rgh
  • 40
  • 2
  • 11
0
votes
1 answer

Git-LFS failing partway through pull

For reasons I haven't pinpointed yet (probably poor internet connection), I am constantly having issues pulling from a Git-LFS repository. The pulls fail partway through pull, and what I'm wondering is whether there is a way to "continue" the pull…
0
votes
1 answer

cannot git push beacuse of LFS upload missing objects

I'd like to push a local branch to remote. This local branch contains work that was not done by me and includes some LFS object reference in history. My git push attempted failed because of LFS upload missing objects. git lfs ls-files 35967a21e5 -…
user2309838
  • 197
  • 6
  • 13
0
votes
1 answer

Git inflate returned -3

I have a little problem with git. I have one big repo (30GB), and some way i cane clone this repo on another computer. Using my pc i can push,pull etc. Someone?Something? Will be grateful git.exe clone --progress --branch develop -v…
Marta M
  • 1
  • 1
  • 1
0
votes
0 answers

Cannot push huge files with Git LFS on Gitea

I installed a local Gitea server with Docker. Now I am trying to push several data files to a repo, and the files are very big (the largest is 9.2 Gb and the second largest is 2.5Gb) so I use Git LFS (I set up Gitea accordingly). The 2.5 Gb file…
Gabriel Cretin
  • 365
  • 3
  • 16
0
votes
0 answers

Git LFS inconsistency?

I have some (binary) files which I recently added (as LFS files) to a project, everything is committed and pushed (to GitLab, not sure if that's relevant) from my home machine. There I run git status and see that everything is up-to-date. I then…
jjg
  • 907
  • 8
  • 18
0
votes
1 answer

GIT LFS lockable files not set as read-only

Hello I have the following issue. In a repository we have been using for quite a time, I have enabled GIT LFS locking on a certain binary file type. I am able to lock stuff using git lfs lock and also list all the locks by git lfs locks. However, I…
Aros
  • 13
  • 2
0
votes
2 answers

Alternate hashing function based on file extension

I'd like to use git to track Media files as long as associated playlists. Tracking playlists is easy, cause these are text files. About the binary files, I've already taken a look at git-lfs and git-annex, but would want to explore the following…
kalou.net
  • 446
  • 1
  • 4
  • 16
0
votes
1 answer

Git LFS still diff-ing files?

I was under the impression that the purpose of Git LFS was to not diff binary files. In a simple test, I have a test repo with 2 files: an 8mb music.mp3 file, and a 'textFile.txt' file that's only a couple of kb. I then run these commands: git…
zachThePerson
  • 632
  • 5
  • 25
0
votes
1 answer

Artifactory not following git-lfs protocol

I am trying to improve the reliability of git-lfs on Artifactory and I analyzed the protocol between the client and artifactory. The first part of downloading objects is to send a api command. {download, [{objectID, size},] the reply [{OID,size,…
0
votes
0 answers

Git revert to commit with LFS file tracking: issue

I am trying to resolve a bad merge that was made to our master branch in GitHub. We use Git LFS to store large files. My expected result is to get my working directory back to how it was at a certain commit, large files and all. Master is missing…