Go to file
2015-11-16 13:55:30 -07:00
commands Merge pull request #818 from sinbad/fix-track-in-symlinked-dir 2015-11-16 13:49:06 -07:00
debian ship v1.0.2 2015-10-28 10:59:36 -06:00
docker Change the run script to download docker instead of build 2015-10-23 17:13:38 -04:00
docs Merge pull request #742 from sinbad/prune 2015-11-16 12:27:47 -07:00
git try a merge out 2015-11-09 10:46:29 -07:00
lfs unnecessary trace msg 2015-11-16 13:55:30 -07:00
rpm ship v1.0.2 2015-10-28 10:59:36 -06:00
script Update nsis to repsect silent mode #789 2015-11-03 16:26:20 +01:00
test Merge pull request #818 from sinbad/fix-track-in-symlinked-dir 2015-11-16 13:49:06 -07:00
vendor/_nuts Merge From Master 2015-10-30 10:47:49 -04:00
.gitattributes Enable autocrlf 2015-08-22 21:03:44 -04:00
.gitignore Use man content for `help <cmd>' and '<cmd> --help' 2015-09-14 17:26:57 +01:00
.travis.yml set GIT_LFS_TEST_DIR for travis tests 2015-09-17 16:47:00 -06:00
CHANGELOG.md ship v1.0.2 2015-10-28 10:59:36 -06:00
CONTRIBUTING.md add build instructions and missing init flags 2015-10-20 11:39:01 -06:00
git-lfs.go lowest exit code here should be 129 2015-10-22 10:03:27 -06:00
LICENSE.md Rename LICENSE to LICENSE.md 2015-08-04 14:57:11 -07:00
Nut.toml Merge From Master 2015-10-30 10:47:49 -04:00
README.md mention build instructions 2015-10-21 09:38:21 -06:00
ROADMAP.md hyperlinks! 2015-08-13 14:02:12 -06:00

Git Large File Storage Build Status

Git LFS is a command line extension and specification for managing large files with Git. The client is written in Go, with pre-compiled binaries available for Mac, Windows, Linux, and FreeBSD. Check out the Git LFS website for a high level overview of features.

See CONTRIBUTING.md for info on working on Git LFS and sending patches. Related projects are listed on the Implementations wiki page. You can chat with the team at: https://gitter.im/github/git-lfs

Getting Started

You can install Git LFS several different ways, depending on your setup and preferences.

Once installed, you can run git lfs init to setup the global Git hooks necessary for Git LFS to work. You can get help on specific commands directly:

$ git lfs help <subcommand>

The official documentation has command references and specifications for the tool.

Note: Git LFS requires Git v1.8.2 or higher.

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 -text
*.zip filter=lfs -text

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.