You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running git lfs pull, the following error occurs:
batch response: This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data packs to restore access.
Failed to fetch some objects from 'https://github.com/FirebaseExtended/compass-ai-travel-planning-sample-flutter.git'
Steps to Reproduce:
Clone the repository: git clone https://github.com/FirebaseExtended/compass-ai-travel-planning-sample-flutter.git
Navigate to the cloned directory: cd compass-ai-travel-planning-sample-flutter
Run the command: git lfs pull
Suggested Actions:
Increase LFS Data Quota: If its possible - purchase additional data packs to restore access, this might be easiest solution, but can become out of data again depending on how many people will try to run IDX environment.
Split Large Files: Consider splitting large files into smaller archives <100mb to avoid using LFS for them.
Store Large Files Externally: Move large files to external storage services that support automated downloading. Below are some options:
External Storage Options with Automated Downloads:
Amazon S3:
Use AWS CLI for automated downloads.
Example command: aws s3 cp s3://bucket-name/file-path local-file-path
Google Cloud Storage:
Use gsutil for automated downloads.
Example command: gsutil cp gs://bucket-name/file-path local-file-path
Dropbox:
Use the Dropbox API for automated downloads.
Example command with curl: curl -L -o local-file-path "https://www.dropbox.com/s/FILE_ID/file-name?dl=1"
The text was updated successfully, but these errors were encountered:
When running
git lfs pull
, the following error occurs:Steps to Reproduce:
git clone https://github.com/FirebaseExtended/compass-ai-travel-planning-sample-flutter.git
cd compass-ai-travel-planning-sample-flutter
git lfs pull
Suggested Actions:
External Storage Options with Automated Downloads:
Amazon S3:
aws s3 cp s3://bucket-name/file-path local-file-path
Google Cloud Storage:
gsutil
for automated downloads.gsutil cp gs://bucket-name/file-path local-file-path
Dropbox:
curl
:curl -L -o local-file-path "https://www.dropbox.com/s/FILE_ID/file-name?dl=1"
The text was updated successfully, but these errors were encountered: