Go to file
brian m. carlson 0115ad1065
Merge pull request #3391 from bk2204/attr-alias
Support attribute macros
2018-12-03 19:47:32 +00:00
.circleci all: use Go Modules instead of Glide 2018-08-29 13:25:47 -04:00
commands commands/track: read all attributes files to parse macros 2018-12-03 17:18:50 +00:00
config config: add wildcard url matching tests 2018-11-26 17:08:17 -08:00
creds creds: Add new NetrcCredentialHelper 2018-10-08 16:18:06 -07:00
debian release: v2.6.0 2018-11-01 09:07:55 -07:00
docker docker: set USER environment variable in build containers 2018-11-02 13:55:20 +00:00
docs docs/man: suggest using Git configuration for LFS keys 2018-11-28 15:34:32 +00:00
errors errors/types.go: add a new UnprocessableEntityError 2018-07-31 13:21:49 -05:00
filepathfilter filepathfilter: don't say file is both accepted and rejected 2018-11-02 18:40:15 +00:00
fs fs/fs.go: strings.HasPrefix typo 2018-07-16 13:32:54 -05:00
git git: look up default global attributes file if none specified 2018-12-03 17:18:50 +00:00
lfs lfs: avoid deadlock when object scanner returns early 2018-11-16 14:38:52 +00:00
lfsapi lfsapi: support pushInsteadOf aliases 2018-10-31 15:10:54 +00:00
lfshttp lfsapi: add support for encrypted client TLS private keys 2018-09-24 15:09:22 +00:00
locking git: expand macros when reading gitattributes files 2018-12-03 17:18:49 +00:00
rpm release: v2.6.0 2018-11-01 09:07:55 -07:00
script script: check for trailing whitespace as part of CI 2018-10-04 14:18:44 +00:00
subprocess subprocess: add a function to shell quote a single string 2018-09-14 22:46:17 +00:00
t commands/track: read all attributes files to parse macros 2018-12-03 17:18:50 +00:00
tasklog tasklog: check for connected tty on the actual writer 2018-11-14 14:35:29 -08:00
tools tools: introduce a function to look up config files 2018-12-03 17:18:49 +00:00
tq tq: enable transfer debugging when GIT_CURL_VERBOSE is set 2018-10-24 20:56:52 +00:00
vendor go.mod: update wildmatch to v1.0.1 2018-12-03 17:18:49 +00:00
.gitattributes Enable autocrlf 2015-08-22 21:03:44 -04:00
.gitignore t: store test_count{,.lock} in t, not t/remote 2018-07-11 13:58:02 -05:00
.mailmap Add myself to .mailmap 2017-02-24 21:10:42 +01:00
.travis.yml all: use Go 1.11.1 in CI 2018-10-02 15:55:19 -07:00
appveyor.yml all: use Go 1.11.1 in CI 2018-10-02 15:55:19 -07:00
CHANGELOG.md release: v2.6.0 2018-11-01 09:07:55 -07: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.md: use ShellSession code fence 2018-10-17 10:57:03 -07:00
git-lfs.go commands/run.go: teach Run() to return an exit code 2018-04-12 12:16:07 -07:00
go.mod go.mod: update wildmatch to v1.0.1 2018-12-03 17:18:49 +00:00
go.sum go.mod: update wildmatch to v1.0.1 2018-12-03 17:18:49 +00:00
INSTALLING.md update other github/git-lfs references 2016-11-15 10:07:11 -07:00
LICENSE.md Update LICENSE.md 2018-07-30 21:17:02 +08:00
Makefile vendor: don't remove necessary dependencies 2018-11-01 15:58:15 -07:00
README.md Clarify minimum git version 2018-10-17 14:24:39 -05:00
versioninfo.json release: v2.6.0 2018-11-01 09:07:55 -07: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 website for an overview of features.

Getting Started

Downloading

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

  • Linux users. Debian and RPM packages are available from PackageCloud.
  • macOS users. Homebrew bottles are distributed, and can be installed via brew install git-lfs.
  • Windows users. Git LFS is included in the distribution of Git for Windows. Alternatively, you can install a recent version of Git LFS from the Chocolatey package manager.
  • Binary packages. In addition, binary packages are available for Linux, macOS, Windows, and FreeBSD.
  • Building from source. This repository can also be built from source using the latest version of Go, and the available instructions in our Wiki.

Installing

From binary

The binary packages include a script which will:

  • Install Git LFS binaries onto the system $PATH
  • Run git lfs install to perform required global configuration changes.
$ ./install.sh

From source

  • Place the git-lfs binary on your systems executable $PATH or equivalent.
  • Git LFS requires global configuration changes once per-machine. This can be done by running:
$ git lfs install

Example Usage

To begin using Git LFS within a Git repository that is not already configured for Git LFS, you can indicate which files you would like Git LFS to manage. This can be done by running the following from within a Git repository:

$ git lfs track "*.psd"

(Where *.psd is the pattern of filenames that you wish to track. You can read more about this pattern syntax here).

After any invocation of git-lfs-track(1) or git-lfs-untrack(1), you must commit changes to your .gitattributes file. This can be done by running:

$ git add .gitattributes
$ git commit -m "track *.psd files using Git LFS"

You can now interact with your Git repository as usual, and Git LFS will take care of managing your large files. For example, changing a file named my.psd (tracked above via *.psd):

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

Tip: if you have large files already in your repository's history, git lfs track will not track them retroactively. To migrate existing large files in your history to use Git LFS, use git lfs migrate. For example:

$ git lfs migrate import --include="*.psd"

For more information, read git-lfs-migrate(1).

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

$ git lfs ls-files
3c2f7aedfb * my.psd

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

$ git push origin master
Uploading LFS objects: 100% (1/1), 810 B, 1.2 KB/s
# ...
To https://github.com/git-lfs/git-lfs-test
   67fcf6a..47b2002  master -> master

Note: Git LFS requires at least Git 1.8.2 on Linux or 1.8.5 on macOS.

Limitations

Git LFS maintains a list of currently known limitations, which you can find and edit here.

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 always open an issue, and one of the Core Team members will respond to you. Please be sure to include:

  1. The output of git lfs env, which displays helpful information about your Git repository useful in debugging.
  2. Any failed commands re-run with GIT_TRACE=1 in the environment, which displays additional information pertaining to why a command crashed.

Contributing

See CONTRIBUTING.md for info on working on Git LFS and sending patches. Related projects are listed on the Implementations wiki page.

Core Team

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

In alphabetical order:

@bk2204 @larsxschneider @PastelMobileSuit @ttaylorr

Alumni

These are the humans that have in the past formed the Git LFS core team, or have otherwise contributed a significant amount to the project. Git LFS would not be possible without them.

In alphabetical order:

@andyneff @rubyist @sinbad @technoweenie