Socket
Socket
Sign inDemoInstall

lfs-auto-track

Package Overview
Dependencies
1
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lfs-auto-track

git lfs auto track module


Version published
Weekly downloads
9
decreased by-47.06%
Maintainers
1
Install size
66.6 kB
Created
Weekly downloads
 

Readme

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

Last updated on 31 Jan 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc