Skip to content

ignite/ignite-files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4d7f512 · Feb 28, 2025

History

48 Commits
Aug 12, 2024
Feb 28, 2025
Apr 24, 2024
Feb 24, 2025
Apr 24, 2024
Aug 28, 2023
Aug 2, 2023
Sep 11, 2023
Feb 28, 2025
Feb 24, 2025
Aug 7, 2023
Aug 7, 2023
Apr 24, 2024

Repository files navigation

Static files for ignite

This repository is used to store large binary files separately from the main project repository to keep it clean and manageable.

Git LFS

To handle large files efficiently, we use Git Large File Storage (Git LFS).

Setting Up Git LFS

To work with this repository, you need to install Git LFS on your local machine.

Follow the installation instructions from GitHub:

Alternatively, you can install it using a package manager:

  • Mac (Homebrew): brew install git-lfs
  • Linux: Use your package manager (e.g., sudo apt install git-lfs)
  • Windows: Use Git for Windows, which includes Git LFS

More details here: git-lfs/git-lfs#3041 (comment)

Pulling with LFS

After cloning, ensure all LFS files are fetched:

git lfs pull
Handling Remote URL Issues

Some users have reported issues when using SSH remotes. If you encounter errors like:

batch request: missing protocol: "<unknown>"

Try using an HTTPS remote instead of SSH:

git remote set-url origin https://github.com/ignite/ignite-files.git

Further Reading