Go to file
Chris Darroch 1d64521df7 lfs/gitscanner.go: remove unused scan method
In commit d0e950d650d19e04fbe031d01b5fa51b95195116 of PR #3978 the
ScanMultiRangeToRemote() method of the GitScanner structure was added,
and the sole caller of the existing ScanRangeToRemote() method was
revised to call the new scan method instead.

As no additional callers of the existing method have been introduced
since then, we can simplify our code by removing the unused method now.
2023-06-07 15:57:34 -07:00
.github build(deps): bump actions/setup-go from 3 to 4 2023-04-01 04:58:33 +00:00
commands Added test 2023-06-07 09:01:07 +02:00
config release: v3.3.0 2022-11-28 19:19:14 +00:00
creds Pass authentication types to Git credential helpers 2023-06-02 13:25:59 +00:00
debian release: v3.3.0 2022-11-28 19:19:14 +00:00
docker docker/README.md,rpm/INSTALL.md: update rpm docs 2022-12-28 00:09:59 -08:00
docs FAQ: add entry on archiving subdirectories 2023-04-26 20:55:17 +00:00
errors errors: make strings translatable 2022-01-18 17:05:02 +00:00
filepathfilter make additional message strings translatable 2022-01-29 22:36:19 -08:00
fs fs: make strings translatable 2022-01-18 17:05:02 +00:00
git git,t: refactor macro attribute handling 2023-06-01 02:17:36 -07:00
lfs lfs/gitscanner.go: remove unused scan method 2023-06-07 15:57:34 -07:00
lfsapi Pass authentication types to Git credential helpers 2023-06-02 13:25:59 +00:00
lfshttp creds: allow multiple values for a key 2023-06-02 13:25:59 +00:00
locking fix: pure SSH list lock command name 2022-12-09 16:33:17 -05:00
po Introduce a single translation 2021-11-15 14:59:20 +00:00
rpm rpm/build_rpms.bsh: also build i686 RPMs 2022-12-28 01:11:23 -08:00
script script/packagecloud.rb: update distro releases 2023-02-04 00:56:38 -08:00
ssh ssh: improve logging for pure SSH protocol 2023-02-15 21:49:40 +00:00
subprocess subprocess: fix incorrect string in test 2022-05-10 17:05:16 +00:00
t Added test 2023-06-07 09:01:07 +02:00
tasklog tasklog/percentage_task.go: add Complete() method 2023-05-26 09:59:22 -07:00
tools Drop pre-1.13 Go compatibility code 2023-05-11 15:38:53 +03:00
tq tq: avoid spawning SSH process needlessly 2023-03-28 15:21:58 +00:00
tr tr: add a tool to build locales into the binary 2021-11-10 14:30:29 +00:00
.gitattributes Enable autocrlf 2015-08-22 21:03:44 -04:00
.gitignore gitignore: ignore the vendor directory 2022-09-07 19:42:10 +00:00
.mailmap Add myself to .mailmap 2017-02-24 21:10:42 +01:00
.ruby-version .github/workflows: upgrade to ruby/setup-ruby@v1 2022-12-21 19:30:13 -08:00
CHANGELOG.md release: v3.3.0 2022-11-28 19:19:14 +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 Update README and contributing docs for new FAQ location 2022-11-08 19:13:29 +00:00
git-lfs_windows_arm64.go Fix Windows arm64 build 2021-09-25 22:14:52 +02:00
git-lfs_windows.go Add support for Windows arm64 2021-08-18 22:01:11 +02:00
git-lfs.go make additional message strings translatable 2022-01-29 22:36:19 -08:00
go.mod Initial addition of shell completion script generator 2023-03-14 22:15:03 +05:30
go.sum Initial addition of shell completion script generator 2023-03-14 22:15:03 +05:30
INSTALLING.md Simplify and deduplicate installation instructions 2023-02-03 11:26:12 +01:00
LICENSE.md Update license year 2021-06-01 14:53:58 +02:00
Makefile Makefile: update Windows signing certificate hash 2023-03-01 14:25:50 -08:00
README.md Tweak "Linux installation instructions" link 2023-02-03 11:26:12 +01:00
SECURITY.md {README,SECURITY}.md: add security bug report docs 2020-09-12 00:16:29 -07:00
versioninfo.json release: v3.3.0 2022-11-28 19:19:14 +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

Installing

On Linux

Debian and RPM packages are available from packagecloud, see the Linux installation instructions.

On macOS

Homebrew bottles are distributed and can be installed via brew install git-lfs.

On Windows

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.

From binary

Binary packages are available for Linux, macOS, Windows, and FreeBSD. 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

Note that Debian and RPM packages are built for multiple Linux distributions and versions for both amd64 and i386. For arm64, only Debian packages are built and only for recent versions due to the cost of building in emulation.

From source

  • Ensure you have the latest version of Go, GNU make, and a standard Unix-compatible build environment installed.
  • On Windows, install goversioninfo with go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo@latest.
  • Run make.
  • Place the git-lfs binary, which can be found in bin, 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

For the convenience of distributors, we also provide a wider variety of signed hashes in the hashes.asc file. Those hashes are in the tagged BSD format, but can be verified with Perl's shasum or the GNU hash utilities, just like the ones in sha256sums.asc.

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

Note that this will rewrite history and change all of the Git object IDs in your repository, just like the export version of this command.

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.

Uninstalling

If you've decided that Git LFS isn't right for you, you can convert your repository back to a plain Git repository with git lfs migrate as well. For example:

$ git lfs migrate export --include="*.psd" --everything

Note that this will rewrite history and change all of the Git object IDs in your repository, just like the import version of this command.

If there's some reason that things aren't working out for you, please let us know in an issue, and we'll definitely try to help or get it fixed.

Limitations

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

Git LFS source code utilizes Go modules in its build system, and therefore this project contains a go.mod file with a defined Go module path. However, we do not maintain a stable Go language API or ABI, as Git LFS is intended to be used solely as a compiled binary utility. Please do not import the git-lfs module into other Go code and do not rely on it as a source code dependency.

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 shipped with Git LFS which answers some common questions.

If you have a question on how to use Git LFS, aren't sure about something, or are looking for input from others on tips about best practices or use cases, feel free to start a discussion.

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