Skip to main content

Using git-lfs on CircleCI Docker images

Using git-lfs on CircleCI Docker images

Overview

CircleCI Docker images in the cimg namespace do not have git-lfs installed. This can be manually installed.

Installation

You can install git-lfs using the following steps:

curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
sudo apt update
sudo apt install git-lfs
git lfs install

Additional Resources

Did this answer your question?