🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 159 (from laksa103)

2. Crawled Status Check

Query:
Response:

3. Robots.txt Check

Query:
Response:

4. Spam/Ban Check

Query:
Response:

5. Seen Status Check

ℹ️ Skipped - page is already crawled

đź“„
INDEXABLE
âś…
CRAWLED
1 hour ago
🤖
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH0 months ago
History dropPASSisNull(history_drop_reason)No drop reason
Spam/banPASSfh_dont_index != 1 AND ml_spam_score = 0ml_spam_score=0
CanonicalPASSmeta_canonical IS NULL OR = '' OR = src_unparsedNot set

Page Details

PropertyValue
URLhttps://git-lfs.com/
Last Crawled2026-04-18 22:44:46 (1 hour ago)
First Indexed2020-01-05 18:14:24 (6 years ago)
HTTP Status Code200
Meta TitleGit Large File Storage | Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
Meta DescriptionGit Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
Meta Canonicalnull
Boilerpipe Text
Getting Started Download and install the Git command line extension. Once downloaded and installed, set up Git LFS for your user account by running: git lfs install You only need to run this once per user account. In each Git repository where you want to use Git LFS, select the file types you'd like Git LFS to manage (or directly edit your .gitattributes). You can configure additional file extensions at anytime. git lfs track "*.psd" Now make sure .gitattributes is tracked: git add .gitattributes Note that defining the file types Git LFS should track will not, by itself, convert any pre-existing files to Git LFS, such as files on other branches or in your prior commit history. To do that, use the git lfs migrate(1) command, which has a range of options designed to suit various potential use cases. There is no step three. Just commit and push as you normally would; for instance, if your current branch is named main : git add file.psd git commit -m "Add design file" git push origin main Check out our wiki , discussion forum , and documentation for help with any questions you might have! Git LFS is an open source project To start a discussion, file an issue, or contribute to the project, head over to the repository or read our guide to contributing . If you're interested in integrating Git LFS into another tool or product, you might want to read the API specification or check out our reference server implementation . Features Large file versioning Version large files—even those as large as a couple GB in size—with Git. More repository space Host more in your Git repositories. External file storage makes it easy to keep your repository at a manageable size. Faster cloning and fetching Download less data. This means faster cloning and fetching from repositories that deal with large files. Same Git workflow Work like you always do on Git—no need for additional commands, secondary storage systems, or toolsets. Same access controls and permissions Keep the same access controls and permissions for large files as the rest of your Git repository when working with a remote host like GitHub.
Markdown
[Docs](https://github.com/git-lfs/git-lfs/tree/main/docs?utm_source=gitlfs_site&utm_medium=docs_link&utm_campaign=gitlfs) [Discussions](https://github.com/git-lfs/git-lfs/discussions?utm_source=gitlfs_site&utm_medium=discussions_link&utm_campaign=gitlfs) [Wiki](https://github.com/git-lfs/git-lfs/wiki?utm_source=gitlfs_site&utm_medium=wiki_link&utm_campaign=gitlfs) [Installation](https://github.com/git-lfs/git-lfs?utm_source=gitlfs_site&utm_medium=installation_link&utm_campaign=gitlfs#installing) [Releases](https://github.com/git-lfs/git-lfs/releases?utm_source=gitlfs_site&utm_medium=releases_link&utm_campaign=gitlfs) [Source](https://github.com/git-lfs/git-lfs?utm_source=gitlfs_site&utm_medium=source_link&utm_campaign=gitlfs) # An open source Git extension for versioning large files Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. [Download v3.7.1 (Windows)](https://github.com/git-lfs/git-lfs/releases/download/v3.7.1/git-lfs-windows-v3.7.1.exe) [Download v3.7.1 (Mac - Intel Silicon)](https://github.com/git-lfs/git-lfs/releases/download/v3.7.1/git-lfs-darwin-amd64-v3.7.1.zip) [Download v3.7.1 (Mac - Apple Silicon)](https://github.com/git-lfs/git-lfs/releases/download/v3.7.1/git-lfs-darwin-arm64-v3.7.1.zip) [Homebrew](http://brew.sh/): `brew install git-lfs` [MacPorts](https://www.macports.org/): `port install git-lfs` [Install v3.7.1 via PackageCloud (Linux)](https://packagecloud.io/github/git-lfs/install) [Download v3.7.1 (Linux - x86-64)](https://github.com/git-lfs/git-lfs/releases/download/v3.7.1/git-lfs-linux-amd64-v3.7.1.tar.gz) ## How it works: ![a diagram showing how Git LFS works](https://git-lfs.com/images/graphic.gif) [Git LFS security update: All users should update to 3.7.1.](https://github.com/git-lfs/git-lfs/security/advisories/GHSA-6pvw-g552-53c5) ## Getting Started 1. Download and install the Git command line extension. Once downloaded and installed, set up Git LFS for your user account by running: ``` git lfs install ``` You only need to run this once per user account. 2. In each Git repository where you want to use Git LFS, select the file types you'd like Git LFS to manage (or directly edit your .gitattributes). You can configure additional file extensions at anytime. ``` git lfs track "*.psd" ``` Now make sure .gitattributes is tracked: ``` git add .gitattributes ``` Note that defining the file types Git LFS should track will not, by itself, convert any pre-existing files to Git LFS, such as files on other branches or in your prior commit history. To do that, use the [git lfs migrate(1)](https://github.com/git-lfs/git-lfs/blob/main/docs/man/git-lfs-migrate.adoc?utm_source=gitlfs_site&utm_medium=doc_man_migrate_link&utm_campaign=gitlfs) command, which has a range of options designed to suit various potential use cases. 3. There is no step three. Just commit and push as you normally would; for instance, if your current branch is named `main`: ``` git add file.psd git commit -m "Add design file" git push origin main ``` Check out our [wiki](https://github.com/git-lfs/git-lfs/wiki?utm_source=gitlfs_site&utm_medium=wiki_link&utm_campaign=gitlfs), [discussion forum](https://github.com/git-lfs/git-lfs/discussions?utm_source=gitlfs_site&utm_medium=discussions_link&utm_campaign=gitlfs), and [documentation](https://github.com/git-lfs/git-lfs/tree/main/docs?utm_source=gitlfs_site&utm_medium=docs_link&utm_campaign=gitlfs) for help with any questions you might have\! ## Git LFS is an open source project To start a discussion, file an issue, or contribute to the project, head over [to the repository](https://github.com/git-lfs/git-lfs?utm_source=gitlfs_site&utm_medium=repo_link&utm_campaign=gitlfs) or read our [guide to contributing](https://github.com/git-lfs/git-lfs/blob/main/CONTRIBUTING.md?utm_source=gitlfs_site&utm_medium=contributing_link&utm_campaign=gitlfs). If you're interested in integrating Git LFS into another tool or product, you might want to read the [API specification](https://github.com/git-lfs/git-lfs/blob/main/docs/api/README.md?utm_source=gitlfs_site&utm_medium=api_spec_link&utm_campaign=gitlfs) or check out our [reference server implementation](https://github.com/git-lfs/lfs-test-server?utm_source=gitlfs_site&utm_medium=reference_servedr&utm_campaign=gitlfs). ## Features - ### Large file versioning Version large files—even those as large as a couple GB in size—with Git. - ### More repository space Host more in your Git repositories. External file storage makes it easy to keep your repository at a manageable size. - ### Faster cloning and fetching Download less data. This means faster cloning and fetching from repositories that deal with large files. - ### Same Git workflow Work like you always do on Git—no need for additional commands, secondary storage systems, or toolsets. - ### Same access controls and permissions Keep the same access controls and permissions for large files as the rest of your Git repository when working with a remote host like GitHub. [with by .](https://github.com/?utm_source=gitlfs_site&utm_medium=footer&utm_campaign=gitlfs) Git is a trademark of the [Software Freedom Conservancy](http://sfconservancy.org/).
Readable Markdown
## Getting Started 1. Download and install the Git command line extension. Once downloaded and installed, set up Git LFS for your user account by running: ``` git lfs install ``` You only need to run this once per user account. 2. In each Git repository where you want to use Git LFS, select the file types you'd like Git LFS to manage (or directly edit your .gitattributes). You can configure additional file extensions at anytime. ``` git lfs track "*.psd" ``` Now make sure .gitattributes is tracked: ``` git add .gitattributes ``` Note that defining the file types Git LFS should track will not, by itself, convert any pre-existing files to Git LFS, such as files on other branches or in your prior commit history. To do that, use the [git lfs migrate(1)](https://github.com/git-lfs/git-lfs/blob/main/docs/man/git-lfs-migrate.adoc?utm_source=gitlfs_site&utm_medium=doc_man_migrate_link&utm_campaign=gitlfs) command, which has a range of options designed to suit various potential use cases. 3. There is no step three. Just commit and push as you normally would; for instance, if your current branch is named `main`: ``` git add file.psd git commit -m "Add design file" git push origin main ``` Check out our [wiki](https://github.com/git-lfs/git-lfs/wiki?utm_source=gitlfs_site&utm_medium=wiki_link&utm_campaign=gitlfs), [discussion forum](https://github.com/git-lfs/git-lfs/discussions?utm_source=gitlfs_site&utm_medium=discussions_link&utm_campaign=gitlfs), and [documentation](https://github.com/git-lfs/git-lfs/tree/main/docs?utm_source=gitlfs_site&utm_medium=docs_link&utm_campaign=gitlfs) for help with any questions you might have\! ## Git LFS is an open source project To start a discussion, file an issue, or contribute to the project, head over [to the repository](https://github.com/git-lfs/git-lfs?utm_source=gitlfs_site&utm_medium=repo_link&utm_campaign=gitlfs) or read our [guide to contributing](https://github.com/git-lfs/git-lfs/blob/main/CONTRIBUTING.md?utm_source=gitlfs_site&utm_medium=contributing_link&utm_campaign=gitlfs). If you're interested in integrating Git LFS into another tool or product, you might want to read the [API specification](https://github.com/git-lfs/git-lfs/blob/main/docs/api/README.md?utm_source=gitlfs_site&utm_medium=api_spec_link&utm_campaign=gitlfs) or check out our [reference server implementation](https://github.com/git-lfs/lfs-test-server?utm_source=gitlfs_site&utm_medium=reference_servedr&utm_campaign=gitlfs). ## Features - ### Large file versioning Version large files—even those as large as a couple GB in size—with Git. - ### More repository space Host more in your Git repositories. External file storage makes it easy to keep your repository at a manageable size. - ### Faster cloning and fetching Download less data. This means faster cloning and fetching from repositories that deal with large files. - ### Same Git workflow Work like you always do on Git—no need for additional commands, secondary storage systems, or toolsets. - ### Same access controls and permissions Keep the same access controls and permissions for large files as the rest of your Git repository when working with a remote host like GitHub.
Shard159 (laksa)
Root Hash12278960552995301759
Unparsed URLcom,git-lfs!/ s443