Skip to content

Axosoft/nodegit-lfs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6a4cbf3 · Apr 12, 2023
Mar 6, 2023
Jan 15, 2020
Jan 15, 2020
Jul 10, 2017
Jan 15, 2020
Aug 30, 2017
Aug 24, 2017
Aug 14, 2017
Apr 12, 2023
Aug 24, 2017
Aug 24, 2017
Jun 4, 2019
Apr 12, 2023
Jul 17, 2020

Repository files navigation

NodeGit LFS

Nodegit LFS is an extension library used to augment NodeGit with the capability to use git lfs via the command line.

To use this package, you must have git and git lfs installed.

This project is new, and is highly volatile. It should be noted that any subsequesnt releases may have breaking changes for the foreseeable future.

How to get started

NodeGit is a peer dependency of the NodeGit LFS package, so you should make sure to install NodeGit before NodeGit LFS.

To install NodeGit run:

yarn add nodegit

To install NodeGit LFS run:

yarn add nodegit-lfs

Once installed, you only need to bootstrap NodeGit LFS once:

const nodegit = require('nodegit');
const addLfs = require('nodegit-lfs');

// Call the function returned from nodegit-lfs with nodegit as a parameter
// and you are good to go!
addLfs(nodegit);

// After nodegit has been augmented you can use LFS via the LFS object
nodegit.LFS.register()
  .then(() => {
    console.log('The LFS filter has been registered!');
  });

Building from source

Clone the repo:

git clone https://github.com/axosoft/nodegit-lfs

Once cloned:

cd nodegit-lfs
yarn