1
0
mirror of synced 2025-12-23 11:54:18 -05:00
Files
docs/content/github/managing-large-files/resolving-git-large-file-storage-upload-failures.md
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

24 lines
1.2 KiB
Markdown

---
title: Resolving Git Large File Storage upload failures
intro: 'If your {{ site.data.variables.large_files.product_name_short }} files didn''t upload properly, you can take several steps to troubleshoot the upload error.'
redirect_from:
- /articles/resolving-git-large-file-storage-upload-failures
versions:
free-pro-team: '*'
enterprise-server: '*'
---
The {{ site.data.variables.large_files.product_name_short }} integrity check ensures that all referenced {{ site.data.variables.large_files.product_name_short }} files in a push have been uploaded properly. If the check detects referenced files that have not been uploaded, you will receive an error message and your push will be blocked.
To resolve the error message, you must reinstall your local {{ site.data.variables.large_files.product_name_short }} client to ensure that the referenced {{ site.data.variables.large_files.product_name_short }} files can be properly uploaded in the future.
1. Open Terminal.
2. Reinstall {{ site.data.variables.large_files.product_name_short }}.
```shell
$ git lfs install
```
3. Push all referenced {{ site.data.variables.large_files.product_name_short }} files.
```shell
$ git lfs push --all origin
```