| Dec | JAN | Feb |
| 31 | ||
| 2015 | 2016 | 2017 |
COLLECTED BY
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.
Support remote.name.pushurl correctly to fix #945Permalink
| Failed to load latest commit information. | |||
|
|
commands | ||
|
|
debian | ||
|
|
docker | ||
|
|
docs | ||
|
|
git | ||
|
|
lfs | ||
|
|
rpm | ||
|
|
script | ||
|
|
test | ||
|
|
vendor/_nuts | ||
|
|
.gitattributes | ||
|
|
.gitignore | ||
|
|
.travis.yml | ||
|
|
CHANGELOG.md | ||
|
|
CONTRIBUTING.md | ||
|
|
LICENSE.md | ||
|
|
Nut.toml | ||
|
|
README.md | ||
|
|
ROADMAP.md | ||
|
|
appveyor.yml | ||
|
|
git-lfs.go | ||
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 installNow, 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.zipOnce 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
$ 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.