72 captures
06 Sep 2015 - 26 Jul 2025
Feb MAR Apr
30
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: Live Web Proxy Crawls

Content crawled via the Wayback Machine Live Proxy mostly by the Save Page Now feature on web.archive.org.

Liveweb proxy is a component of Internet Archive’s wayback machine project. The liveweb proxy captures the content of a web page in real time, archives it into a ARC or WARC file and returns the ARC/WARC record back to the wayback machine to process. The recorded ARC/WARC file becomes part of the wayback machine in due course of time.
TIMESTAMPS

The Wayback Machine - http://web.archive.org/web/20160330193532/https://help.github.com/articles/configuring-git-large-file-storage/
 


GitHub Help






Configuring Git Large File Storage




mac  

windows  

linux  

all  





Once Git LFS is installed, you need to associate it with a large file in your repository.
 


Open TerminalTerminalGit Bash.

Change your current working directory to an existing repository you'd like to use with Git LFS.


To associate a file type in your repository with Git LFS, enter git lfs track followed by the name of a file extension to associate that file type.

For example, to associate a .psd file, enter the following command:
git lfs track "*.psd"
Adding path *.psd

Every file type you want to associate with Git LFS will need to be added with git lfs track. This command amends your repository's .gitattributes file and associates large files with Git LFS.


Tip: We strongly suggest that you commit your local .gitattributes file into your repository. Relying on a global .gitattributes file associated with Git LFS may cause conflicts when contributing to other Git projects.




Add a file to the repository matching the extension you've associated:
git add path/to/file.psd



Commit the file and push it to GitHub:
git commit -m "add file.psd"
git push origin master

You should see some diagnostic information about your file upload:
Sending file.psd
44.74 MB / 81.04 MB  55.21 % 14s
64.74 MB / 81.04 MB  79.21 % 3s


Further reading



Collaboration with Git Large File Storage

 



Contact a human  




Article versions



GitHub.com

GitHub Enterprise 2.5  

GitHub Enterprise 2.4  

GitHub Enterprise 2.3  

GitHub Enterprise 2.2  

GitHub Enterprise 2.1  









© 2016 GitHub Inc. All rights reserved.  


Terms of Service

Privacy

Security

Support