#git-lfs #transfer #remote

git-lfs-spec

Rust types for Git LFS

1 unstable release

0.1.0 Jul 20, 2021

#101 in #transfer

26 downloads per month

MIT/Apache

22KB
565 lines

git-lfs-ipfs

A git-lfs custom transfer & extension that makes it easy to store large files with IPFS.

git-lfs-ipfs

codecov

Installation

Building

git clone https://github.com/sameer/git-lfs-ipfs
cd git-lfs-ipfs/git-lfs-ipfs-cli
cargo build --release

Packages

None yet!

Configuration

Add the custom transfer and extensions for IPFS to your ~/.gitconfig:

[lfs]
	standalonetransferagent = ipfs
[lfs "customtransfer.ipfs"]
	path = git-lfs-ipfs-cli
	args = transfer
	concurrent = true
	direction = both
[lfs "extension.ipfs"]
    clean = git-lfs-ipfs-cli clean %f
    smudge = git-lfs-ipfs-cli smudge %f
    priority = 0

Note that git-lfs-ipfs will be enabled by default for all future LFS usage if you add these lines to your configuration. Make sure to remove them if you do not wish to do so.

Demo

A demo repository is available to test out your installation: sameer/git-lfs-ipfs-demo. Simply clone it once you configure git-lfs-ipfs and verify that no errors occur.

Usage

Use git LFS like you usually do and all subsequent files added in LFS will be added to IPFS.

Files already on S3, etc. cannot be read unless you remove the [lfs "customtransfer.ipfs"] entry in your ~/.gitconfig; the custom transfer overrides your default transfer so that a file is never uploaded to a remote server.

Dependencies

~3–4MB
~105K SLoC