Go to file
2017-08-15 09:48:00 -06:00
commands commands: rename possiblyMalformedSmudge to possiblyMalformedObjectSize 2017-08-15 09:48:00 -06:00
config config: warn on unsafe keys being read from .lfsconfig 2017-08-10 17:56:28 -06:00
debian bump package versions 2017-06-26 19:26:42 -06:00
docker docker: add debian_9 image to default images list 2017-05-08 09:55:46 -06:00
docs Merge pull request #2508 from git-lfs/lfs-enable-credential-cache 2017-08-14 14:23:30 -06:00
errors Fix parentOf function to work with updated github.com/pkg/errors 2017-07-18 01:03:29 +00:00
filepathfilter filepathfilter: platform-specific tests 2017-08-08 11:10:26 -06:00
git Merge pull request #2438 from git-lfs/status-missing-objects 2017-08-10 09:42:18 -06:00
lfs commands: teach clean() to return *lfs.Pointer 2017-08-15 09:48:00 -06:00
lfsapi Merge pull request #2508 from git-lfs/lfs-enable-credential-cache 2017-08-14 14:23:30 -06:00
localstorage Add lfs.storage parameter for overriding LFS storage location 2017-07-07 10:39:55 +03:00
locking locking: stat(1) on repository-absolute path when locking file 2017-08-11 12:38:01 -06:00
progress progress/logger: invert l.writeData conditional 2017-08-01 14:00:54 -06:00
rpm all: bump version to '2.3.0-pre' 2017-07-05 06:58:01 -06:00
script script/build: pass -gcflags to compiler 2017-07-31 14:14:51 -06:00
subprocess Fix for #1874 2017-01-19 09:37:26 -05:00
test test: fix incorrect path assertion 2017-08-11 14:16:52 -06:00
tools tools/humanize: teach ParseBytes() to parse empty string as 0 2017-07-31 11:46:34 -06:00
tq tq: increase default lfs.concurrenttransfers to 8 2017-08-11 22:23:07 -06:00
vendor glide: remove dependency 'github.com/kr/text' 2017-08-10 17:17:03 -06:00
.gitattributes Enable autocrlf 2015-08-22 21:03:44 -04:00
.gitignore Update gitignore to add some temp files that get created when building debs 2017-07-17 19:55:12 +00:00
.mailmap Add myself to .mailmap 2017-02-24 21:10:42 +01:00
.travis.yml travis: unset GIT_ASKPASS 2017-08-10 17:32:53 -06:00
appveyor.yml all: build on go1.8.3 2017-05-24 16:04:20 -06:00
CHANGELOG.md Bump version and changelog 2017-06-26 16:53:03 -06:00
circle.yml ci: fix incorrect branch name on CircleCI 2017-08-02 14:46:54 -06:00
CODE-OF-CONDUCT.md embed the open code of conduct since the link is bad now 2016-05-06 05:50:14 -06:00
CONTRIBUTING.md config: bump version to '2.0-pre' so it's clear you're not on an official release 2017-02-09 10:05:17 -07:00
git-lfs.go Use goversioninfo instead of windres to embed Windows resources 2016-12-15 12:27:47 +01:00
glide.lock github.com/xeipuuv/gojsonreference 2017-08-10 17:19:05 -06:00
glide.yaml github.com/xeipuuv/gojsonreference 2017-08-10 17:19:05 -06:00
INSTALLING.md update other github/git-lfs references 2016-11-15 10:07:11 -07:00
LICENSE.md Add copyright date to license 2016-11-23 12:23:13 -05:00
Makefile update other github/git-lfs references 2016-11-15 10:07:11 -07:00
README.md Allow using custom transfer agents directly 2017-07-31 16:28:07 +02:00
ROADMAP.md update other github/git-lfs references 2016-11-15 10:07:11 -07:00
versioninfo.json all: bump version to '2.3.0-pre' 2017-07-05 06:58:01 -06:00

Git Large File Storage

Linux macOS Windows
Linux build status macOS build status Windows 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

By default, the Git LFS client needs a Git LFS server to sync the large files it manages. This works out of the box when using popular git repository hosting providers like GitHub, Atlassian, etc. When you host your own vanilla git server, for example, you need to either use a separate Git LFS server instance, or use the custom transfer adapter with a transfer agent in blind mode, without having to use a Git LFS server instance.

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

Note: Git LFS requires Git v1.8.5 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/git-lfs/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