65 captures
09 Apr 2015 - 10 Jan 2026
Dec JAN Feb
31
2015 2016 2017
success
fail

About this capture

COLLECTED BY

Organization: Internet Archive

The Internet Archive discovers and captures web pages through many different web crawls. At any given time several distinct crawls are running, some for months, and some every day or longer. View the web archive through the Wayback Machine.

Collection: Survey Crawl Number 4 - Started Jan 9th, 2016 - Ended Feb 25th, 2016

The seed for this crawl was a list of every host in the Wayback Machine

This crawl was run at a level 1 (URLs including their embeds, plus the URLs of all outbound links including their embeds)

The WARC files associated with this crawl are not currently available to the general public.

TIMESTAMPS

The Wayback Machine - http://web.archive.org/web/20160131101441/https://github.com/github/git-lfs
  Skip to content  


Sign up  Sign in  




Explore  

Features  

Enterprise  

Pricing  













Watch  

Star  

Fork  

/git-lfs  



 




Git extension for versioning large files  https://git-lfs.github.com  





2,489   commits  

18 branches  

31 releases  

55 contributors  




(一) Go 67.6%  

(二) Shell  31.7%  

(三) Other  0.7%  






Go Shell  Other  



Find file  





Download ZIP  






Switch branches/tags  





Branches  

Tags  





advertise   better-readme   cred-fixes-debug   doc-updates   extract-localstorage-1   fix-push-panic   fix-submod-lfsconfig   git-remotes   master   netrc   release-0.5   release-1.0-hotfix   release-1.0   rikdev-fix-submodule-lfsconfig   sinbad-prune   sinbad-windows-tests   travis-osx   tweak-errors  

Nothing to show
 


v1.1.0   v1.0.2   v1.0.1   v1.0.0   v0.6.0   v0.5.4   v0.5.4-homebrew   v0.5.3   v0.5.2   v0.5.1   v0.5.1-tracing   v0.5.0   v0.5.0.pre2   v0.5.0.pre1   v0.4.2.1   v0.4.2   v0.4.1   v0.4.0   v0.3.6   v0.3.5   v0.3.4   v0.3.3   v0.3.2   v0.3.1   v0.3.0   v0.2.3   v0.2.2   v0.2.1   v0.2.1-p1   v0.2.0   v0.1.0  

Nothing to show
 







Latest commit   b5e636e   16   @technoweenie technoweenie   Merge pull request #949 from sinbad/support-remote-pushurl    
Support remote.name.pushurl correctly to fix #945



 
Failed to load latest commit information.
commands Merge pull request #949 from sinbad/support-remote-pushurl
debian Add git version dependency to debian package
docker Got old self signing tests working again
docs Support remote.name.pushurl correctly to fix #945
git remove git.CurrentBranch() and its last internal uses
lfs Fix doc comment
rpm Trying the IUS repo for git for centos 6 #878
script Depending on ruby and ruby-dev packages instead of version specific p…
test fix some more 'lfs init' references
vendor/_nuts Merge From Master
.gitattributes Enable autocrlf
.gitignore Use man content for `help <cmd>' and '<cmd> --help'
.travis.yml enable OSX build on TravisCI
CHANGELOG.md release v1.1.0
CONTRIBUTING.md big updates to the readme and contributing guide
LICENSE.md Rename LICENSE to LICENSE.md
Nut.toml release v1.1.0
README.md Merge pull request #900 from ro31337/patch-1
ROADMAP.md hyperlinks!
appveyor.yml Appveyor Proof of concept
git-lfs.go lowest exit code here should be 129


README.md  

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.


Linux users can install Debian or RPM packages from PackageCloud.

Mac users can install from Homebrew with brew install git-lfs.

Windows users can install from Chocolatey with choco install git-lfs.install.

Binary packages are available for Windows, Mac, Linux, and FreeBSD.

You can build it with Go 1.5+. See the Contributing Guide for instructions.


Note: Git LFS requires Git v1.8.2 or higher.

One installed, you need to setup the global Git hooks for Git LFS. This only needs to be run 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 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.


(一)Include the output of git lfs env, which shows how your Git environment is setup.

(二)Include GIT_TRACE=1 in any bad Git commands to enable debug messages.

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










Status

API

Training

Shop

Blog

About

Pricing
 


© 2016 GitHub, Inc.

Terms

Privacy

Security

Contact

Help
 



Something went wrong with that request. Please try again.  

You signed in with another tab or window. Reload to refresh your session.  You signed out in another tab or window. Reload to refresh your session.