Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lfs-auto-track

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lfs-auto-track

git lfs auto track module

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
increased by90%
Maintainers
1
Weekly downloads
 
Created
Source

lfs-auto-track

If the files bigger than the size(you can configure, check the usage part), when commit, automatically run git lfs track files.

Usage

Step 0: prepare

make sure use husky and lint-staged in the project, and run git lfs install

Step 1: install

npm i lfs-auto-track -D

Step 2: Configure

Add lint-staged script in package.json

{
  "name": "module-name",
  ...
  "lint-staged": {
    "*": [
      "lfs-auto-track 'image,video,audio:100;*:1024'"
    ],
  }
  ...
}

Configuration means

'image,video,audio:100;*:1024' means if mimetype is image/video/audio files's size bigger than 100 KB, and others files bigger than 1024 KB, these files will add to .gitattributes with run command git lfs track automatically;

'*:1024' means any files size bigger than 1024 KB when commit, these files will add to .gitattributes with run command git lfs track automatically;

'jpg,png,gif:1024' means files with extension jpg or png or gif size bigger than 1024 KB when commit, these files will add to .gitattributes with run command git lfs track automatically.

Examples

  • Check the repo source code (package.json / imgs/)

Some questions

  • How to upload the large file after track?
git lfs push --all origin
  • How to clone the project without download the large file?
GIT_LFS_SKIP_SMUDGE=1 git clone THE_REPO_URL
  • How to download the large files?
git lfs pull

Keywords

FAQs

Package last updated on 31 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc