Go to file
Chris Darroch bbdcbca83a vendor,go.{mod,sum}: update x/net and dependencies
Update the vendored golang.org/x/net module to the latest
version, which in turn updates the vendored copy of the
golang.org/x/text module to 0.3.3.  That version of x/text
includes a mitigation of CVE-2020-14040, which pertains to
processing UTF-16 data with a Byte Order Mark.

The Git LFS client should not be affected by that security
issue, since it does not open streams in UTF-16 mode, but
we update our modules to stay current with the upstream Go
sources and also to avoid being flagged by security scanners.

The specific commands run to perform this update were:
"go get golang.org/x/net@latest && go mod tidy && go mod vendor"
2021-02-08 12:45:26 -08:00
.github .github/workflows: don't try to install older Git 2021-01-27 19:59:32 +00:00
commands commands: change default branch name 2021-02-01 21:37:32 +00:00
config release: v2.13.0 2020-12-07 21:29:05 +00:00
creds Remove NTLM support 2021-02-02 16:41:41 +00:00
debian release: v2.13.0 2020-12-07 21:29:05 +00:00
docker Drop support for Debian 8 2020-12-01 14:48:38 +00:00
docs docs: prepare for rename of default branch name 2021-02-02 14:40:51 +00:00
errors Fix error strings to follow Go guidelines 2019-10-22 17:33:49 +03:00
filepathfilter filepathfilter: add an option for stricter matching 2020-11-10 22:59:33 +00:00
fs fs: don't panic when using a too-short object ID to push 2020-11-16 15:33:35 +00:00
git git: match gitattributes patterns strictly 2020-11-12 18:41:32 +00:00
lfs prune: add options to be more aggressive about pruning 2021-01-13 19:30:40 +00:00
lfsapi Remove NTLM support 2021-02-02 16:41:41 +00:00
lfshttp lfshttp/proxy: consider scheme of request URL when choosing proxy 2021-02-03 20:27:39 +00:00
locking locking: don't assume files are lockable if no patterns exist 2020-06-29 16:35:26 +00:00
rpm Remove dependencies on NTLM 2021-02-02 16:41:42 +00:00
script Remove unused backport-pr script 2021-02-01 21:35:20 +00:00
subprocess subprocess: avoid using relative program names 2020-11-02 20:57:56 +00:00
t Remove NTLM support 2021-02-02 16:41:41 +00:00
tasklog tasklog/log.go: print "done" messages with a trailing period 2019-08-23 17:04:37 -04:00
tools tools: implement cloneFileSyscall on darwin without cgo 2021-01-29 09:45:34 +01:00
tq Remove NTLM support 2021-02-02 16:41:41 +00:00
vendor vendor,go.{mod,sum}: update x/net and dependencies 2021-02-08 12:45:26 -08: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
CHANGELOG.md release: v2.13.0 2020-12-07 21:29:05 +00: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 docs: prepare for rename of default branch name 2021-02-02 14:40:51 +00:00
git-lfs_windows.go Run go generate only on Windows 2019-01-15 22:17:53 +00:00
git-lfs.go Run go generate only on Windows 2019-01-15 22:17:53 +00:00
go.mod vendor,go.{mod,sum}: update x/net and dependencies 2021-02-08 12:45:26 -08:00
go.sum vendor,go.{mod,sum}: update x/net and dependencies 2021-02-08 12:45:26 -08:00
INSTALLING.md update other github/git-lfs references 2016-11-15 10:07:11 -07:00
LICENSE.md subprocess: avoid using relative program names 2020-11-02 20:57:56 +00:00
Makefile Makefile: allow make release to be run twice in a row 2020-12-11 17:33:00 +00:00
README.md docs: prepare for rename of default branch name 2021-02-02 14:40:51 +00:00
SECURITY.md {README,SECURITY}.md: add security bug report docs 2020-09-12 00:16:29 -07:00
versioninfo.json release: v2.13.0 2020-12-07 21:29:05 +00:00

Git Large File Storage

CI 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

Verifying releases

Releases are signed with the OpenPGP key of one of the core team members. To get these keys, you can run the following command, which will print them to standard output:

$ curl -L https://api.github.com/repos/git-lfs/git-lfs/tarball/core-gpg-keys | tar -Ozxf -

Once you have the keys, you can download the sha256sums.asc file and verify the file you want like so:

$ gpg -d sha256sums.asc | grep git-lfs-linux-amd64-v2.10.0.tar.gz | shasum -a 256 -c

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).

Note: the quotation marks surrounding the pattern are important to prevent the glob pattern from being expanded by the shell.

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" --everything

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 main
Uploading LFS objects: 100% (1/1), 810 B, 1.2 KB/s
# ...
To https://github.com/git-lfs/git-lfs-test
   67fcf6a..47b2002  main -> main

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. There's also a FAQ on the wiki which answers some common questions.

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.

See also SECURITY.md for info on how to submit reports of security vulnerabilities.

Core Team

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

In alphabetical order:

@bk2204 @chrisd8088 @larsxschneider
PGP 0223B187 PGP 088335A9 PGP A5795889

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 @PastelMobileSuit @rubyist @sinbad @technoweenie @ttaylorr