The Wayback Machine - https://web.archive.org/web/20160704235944/https://github.com/github/git-lfs
Skip to content
Git extension for versioning large files
Go Shell Other
Latest commit 7ee533f Jun 29, 2016 @ttaylorr ttaylorr committed on GitHub Merge pull request #1335 from github/fix-logs-manpage
docs/man: move "logs" subcommands from OPTIONS to COMMANDS
Failed to load latest commit information.
api Merge branch 'master' into lock-commands Jun 21, 2016
auth Implement support for GIT_SSH_COMMAND Jun 3, 2016
commands Merge pull request #1262 from orivej/checkout-unstaged Jun 28, 2016
config Document default behaviour of BasicTransfersOnly() Jun 10, 2016
debian release git-lfs v1.2.1 Jun 27, 2016
docker Removed CentOS 5 from dockers. Fixed #1295. Jun 9, 2016
docs docs/man: move "logs" subcommands from OPTIONS to COMMANDS Jun 29, 2016
errutil Document that our package structure is not guaranteed to be stable May 18, 2016
git Fix 'git lfs fetch' with a sha1 ref Jun 28, 2016
httputil Rationalise TODO LEGACY API comments so easier to search for later May 31, 2016
lfs release git-lfs v1.2.1 Jun 27, 2016
localstorage vendor: vendor dependencies in vendor/ using Glide May 23, 2016
progress Print report from meter when there were files but they were skipped Jun 8, 2016
rpm release git-lfs v1.2.1 Jun 27, 2016
script Merge pull request #1292 from javabrett/enforce-packagecloud-ruby-min… Jun 28, 2016
subprocess vendor: vendor dependencies in vendor/ using Glide May 23, 2016
test Merge pull request #1262 from orivej/checkout-unstaged Jun 28, 2016
tools First pass of resuming downloads via HTTP Range Jun 7, 2016
transfer Merge branch 'master' into transfer-basic-only Jun 10, 2016
vendor/github.com vendor: remove github.com/technoweenie/assert May 25, 2016
.gitattributes Enable autocrlf Aug 22, 2015
.gitignore gitignore: ignore lfstest-* files Jun 2, 2016
.travis.yml Update .travis.yml Jun 1, 2016
CHANGELOG.md release git-lfs v1.2.1 Jun 27, 2016
CODE-OF-CONDUCT.md embed the open code of conduct since the link is bad now May 6, 2016
CONTRIBUTING.md contributing: s/Nut/Glide May 23, 2016
INSTALLING.md small typos Apr 14, 2016
LICENSE.md Rename LICENSE to LICENSE.md Aug 4, 2015
README.md README: add @ttaylorr to core team Jun 28, 2016
ROADMAP.md Link PR #1177 to ROADMAP,md May 11, 2016
appveyor.yml Appveyor Proof of concept Oct 23, 2015
git-lfs.go Fix some integration build errors May 13, 2016
glide.lock vendor: remove github.com/technoweenie/assert May 25, 2016
glide.yaml vendor: remove github.com/technoweenie/assert May 25, 2016

README.md

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 an overview of features.

Getting Started

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

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

Once installed, you need to setup the global Git hooks for Git LFS. This only needs to be done once per machine.

$ git lfs install

Now, it's time to add some large files to a repository. The first step is to specify file patterns to store with Git LFS. These file patterns are stored in .gitattributes.

$ mkdir large-repo
$ cd large-repo
$ git init

# Add all zip files through Git LFS
$ git lfs track "*.zip"

Now you're ready to push some commits:

$ git add .gitattributes
$ 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
LFS: 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

Need Help?

You can get help on specific commands directly:

$ git lfs help <subcommand>

The official documentation has command references and specifications for the tool. You can ask questions in the Git LFS chat room, or file a new issue. Be sure to include details about the problem so we can troubleshoot it.

  1. Include the output of git lfs env, which shows how your Git environment is setup.
  2. Include GIT_TRACE=1 in any bad Git commands to enable debug messages.
  3. If the output includes a message like Errors logged to /path/to/.git/lfs/objects/logs/*.log, throw the contents in the issue, or as a link to a Gist or paste site.

Contributing

See CONTRIBUTING.md for info on working on Git LFS and sending patches. Related projects are listed on the Implementations wiki page. You can also join the project's chat room.

Using LFS from other Go code

At the moment git-lfs is only focussed on the stability of its command line interface, and the server APIs. The contents of the source packages is subject to change. We therefore currently discourage other Go code from depending on the git-lfs packages directly; an API to be used by external Go code may be provided in future.

Core Team

These are the humans that form the Git LFS core team, which runs the project.

In alphabetical order:

@andyneff @rubyist @sinbad @technoweenie @ttaylorr
Something went wrong with that request. Please try again.