git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

commit 5c6b2943d020fdae0b33748b2e5a910d6db90e8a
parent 06b449896ad015c314d2b4bb2eb18f1f0fdbd5e4
Author: Remy Noulin (Spartatek) <remy.noulin@spartatek.se>
Date:   Mon, 21 Nov 2016 13:24:54 +0100

add npm package

README.md    | 13 +++++++++++++
package.json | 25 +++++++++++++++++++++++++
2 files changed, 38 insertions(+)

Diffstat:
MREADME.md | 13+++++++++++++
Apackage.json | 25+++++++++++++++++++++++++
2 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -4,6 +4,14 @@ This is a prototype inspired by git lfs and git fat. By default the files are stored in the home directory. +# Install + +``` +npm install -g git-off +``` + +[https://www.npmjs.com/package/git-off](https://www.npmjs.com/package/git-off) + # USAGE Setup: @@ -95,3 +103,8 @@ git off env git off help shows git off help ``` + +# Dependencies + +- git +- ssh and scp for scp transport diff --git a/package.json b/package.json @@ -0,0 +1,25 @@ +{ + "name": "git-off", + "version": "0.0.1", + "description": "large file handler for git", + "bin": "./bin/git-off", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/RemyNoulin/git-off.git" + }, + "keywords": [ + "git", + "large", + "file", + "binary" + ], + "author": "Remy Noulin", + "license": "MIT", + "bugs": { + "url": "https://github.com/RemyNoulin/git-off/issues" + }, + "homepage": "https://github.com/RemyNoulin/git-off#readme" +}