Go to file
risk danger olson 77dba8f70c Merge pull request #183 from github/ssh
SSH support
2015-04-08 05:37:19 +02:00
.vendor/src/github.com updating go import paths 2015-01-30 14:08:47 -05:00
cmd rename hawser => git-lfs 2015-03-19 13:30:55 -06:00
commands Merge pull request #183 from github/ssh 2015-04-08 05:37:19 +02:00
docs Replace Haswer ref with Git LFS in man pages 2015-04-06 13:35:59 -07:00
git Simplify current branch/remote finding, fix bug in branch finding, add a status test 2014-10-28 15:22:38 -04:00
lfs print ssh error to tracerx so it can try hitting the api directly 2015-03-30 00:00:34 -06:00
pointer move smudge message before the download actually starts 2015-03-22 12:10:12 -06:00
scanner rename hawser => git-lfs 2015-03-19 13:30:55 -06:00
script tweak release script temporarily 2015-03-27 12:14:33 -06:00
.gitignore rename hawser => git-lfs 2015-03-19 13:30:55 -06:00
CONTRIBUTING.md rename hawser => git-lfs 2015-03-19 13:30:55 -06:00
Godeps Update tracerx 2014-11-02 15:34:57 -05:00
LICENSE Create LICENSE 2015-03-24 15:12:12 -04:00
README.md update the readme to use the latest track command 2015-04-02 15:06:11 -06:00

Git Large File Storage

Git LFS is a command line extension for managing large files. It replaces large files with text pointers inside Git, while storing the actual files in a remote Git LFS server.

The Git LFS client is written in Go, with pre-compiled binaries available for Mac, Windows, Linux, and FreeBSD.

See CONTRIBUTING.md for info on working on Git LFS and sending patches.

Getting Started

Download the latest client and run the included install script. The installer should run git lfs init for you, which sets up Git's global configuration settings for Git LFS.

Configuration

Git LFS uses .gitattributes files to configure which are managed by Git LFS. Here is a sample one that saves zips and mp3s:

$ cat .gitattributes
*.mp3 filter=lfs -crlf
*.zip filter=lfs -crlf

Git LFS can manage .gitattributes for you:

$ git lfs track "*.mp3"
Tracking *.mp3

$ git lfs track "*.zip"
Tracking *.zip

$ git lfs track
Listing tracked paths
    *.mp3 (.gitattributes)
    *.zip (.gitattributes)

$ git lfs untrack "*.zip"
Untracking *.zip

$ git lfs track
Listing tracked paths
    *.mp3 (.gitattributes)

Pushing commits

Once setup, you're ready to push some commits.

$ git add my.zip
$ git commit -m "add zip"

You can confirm that Git LFS is managing your zip file:

$ git lfs ls-files
my.zip

Once you've made your commits, push your files to the Git remote.

$ git push origin master
Sending my.zip
12.58 MB / 12.58 MB  100.00 %
Counting objects: 2, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 548 bytes | 0 bytes/s, done.
Total 5 (delta 1), reused 0 (delta 0)
To https://github.com/github/git-lfs-test
   67fcf6a..47b2002  master -> master

See the Git LFS overview and man pages.