diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2017-12-18 13:03:16 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2017-12-18 13:03:16 +0000 |
commit | 38dd7263e15e84c08b62c97028e943c759384b94 (patch) | |
tree | 66a353078159c0e5152ea6332af74c32ec4d0ffd /doc | |
parent | 3870a1bde276144a05a31185ede7a5032818d489 (diff) | |
parent | c7807741a47dfc2024817eddf289fb9d8211994d (diff) | |
download | gitlab-ce-38dd7263e15e84c08b62c97028e943c759384b94.tar.gz |
Merge branch '39836-document-how-lfs-integrity-check-push-prevention-works' into 'master'
Resolve "Document how LFS integrity check push prevention works"
Closes #39836
See merge request gitlab-org/gitlab-ce!15958
Diffstat (limited to 'doc')
-rw-r--r-- | doc/workflow/lfs/manage_large_binaries_with_git_lfs.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md b/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md index 6adde447975..195285f9157 100644 --- a/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md +++ b/doc/workflow/lfs/manage_large_binaries_with_git_lfs.md @@ -163,3 +163,11 @@ For Windows, you can use `wincred` or Microsoft's [Git Credential Manager for Wi More details about various methods of storing the user credentials can be found on [Git Credential Storage documentation](https://git-scm.com/book/en/v2/Git-Tools-Credential-Storage). + +### LFS objects are missing on push + +GitLab checks files to detect LFS pointers on push. If LFS pointers are detected, GitLab tries to verify that those files already exist in LFS on GitLab. + +Verify that LFS in installed locally and consider a manual push with `git lfs push --all`. + +If you are storing LFS files outside of GitLab you can disable LFS on the project by settting `lfs_enabled: false` with the [projets api](../../api/projects.md#edit-project). |