Go to file
Taylor Blau 5da95608c9 git/git: sanitize pattern in git.GetTrackedFiles
`git ls-files` does not play nicely with patterns that contain a leading slash,
such as "/*.txt". To work around this, if a leading slash is present, it is
removed before being passed to the git call. Furthemore, the results are
checked such that they only match files that are direct descendants of the
repository's root, as according to:

https://git-scm.com/docs/gitignore#_pattern_format
2016-07-05 16:15:29 -06:00
api Merge branch 'master' into lock-commands 2016-06-21 09:40:25 -06:00
auth Implement support for GIT_SSH_COMMAND 2016-06-03 18:50:42 +10:00
commands git/git: sanitize pattern in git.GetTrackedFiles 2016-07-05 16:15:29 -06:00
config Document default behaviour of BasicTransfersOnly() 2016-06-10 08:43:32 +01:00
debian release git-lfs v1.2.1 2016-06-27 09:50:59 -06:00
docker Removed CentOS 5 from dockers. Fixed #1295. 2016-06-09 05:03:44 +10:00
docs Revert "Add checkout --unstaged flag" 2016-07-05 17:21:44 +01:00
errutil Document that our package structure is not guaranteed to be stable 2016-05-18 11:43:42 +01:00
git git/git: sanitize pattern in git.GetTrackedFiles 2016-07-05 16:15:29 -06:00
httputil Rationalise TODO LEGACY API comments so easier to search for later 2016-05-31 10:21:34 +01:00
lfs release git-lfs v1.2.1 2016-06-27 09:50:59 -06:00
localstorage vendor: vendor dependencies in vendor/ using Glide 2016-05-23 12:10:35 -06:00
progress Print report from meter when there were files but they were skipped 2016-06-08 11:07:25 +01:00
rpm release git-lfs v1.2.1 2016-06-27 09:50:59 -06:00
script Merge pull request #1292 from javabrett/enforce-packagecloud-ruby-minimum-version 2016-06-28 13:41:49 -06:00
subprocess vendor: vendor dependencies in vendor/ using Glide 2016-05-23 12:10:35 -06:00
test test/track: touch and stage files 2016-07-05 13:46:32 -06:00
tools First pass of resuming downloads via HTTP Range 2016-06-07 09:38:44 +01:00
transfer Don't include creds by default in tus call, prompt on 401 instead 2016-06-14 12:55:19 +01:00
vendor/github.com vendor: remove github.com/technoweenie/assert 2016-05-25 10:49:41 -06:00
.gitattributes Enable autocrlf 2015-08-22 21:03:44 -04:00
.gitignore gitignore: ignore lfstest-* files 2016-06-02 08:48:07 -06:00
.travis.yml Update .travis.yml 2016-06-01 16:37:36 -06:00
appveyor.yml Appveyor Proof of concept 2015-10-23 18:47:37 -04:00
CHANGELOG.md release git-lfs v1.2.1 2016-06-27 09:50:59 -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 contributing: s/Nut/Glide 2016-05-23 15:05:18 -06:00
git-lfs.go Fix some integration build errors 2016-05-13 17:43:04 +01:00
glide.lock vendor: remove github.com/technoweenie/assert 2016-05-25 10:49:41 -06:00
glide.yaml vendor: remove github.com/technoweenie/assert 2016-05-25 10:49:41 -06:00
INSTALLING.md small typos 2016-04-14 10:59:20 -06:00
LICENSE.md Rename LICENSE to LICENSE.md 2015-08-04 14:57:11 -07:00
README.md README: add @ttaylorr to core team 2016-06-28 13:46:12 -06:00
ROADMAP.md Link PR #1177 to ROADMAP,md 2016-05-11 08:03:53 +10: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 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