git-lfs/docs/man/git-lfs-smudge.1.ronn

42 lines
1.1 KiB
Plaintext
Raw Normal View History

git-lfs-smudge(1) -- Git smudge filter that converts pointer in blobs to the actual content
===========================================================================================
2014-06-02 22:56:01 +00:00
## SYNOPSIS
`git lfs smudge` [<path>]
2015-09-23 20:22:38 +00:00
`git lfs smudge` --skip [<path>]
2014-06-02 22:56:01 +00:00
## DESCRIPTION
Read a Git LFS pointer file from standard input and write the contents
of the corresponding large file to standard output. If needed,
download the file's contents from the Git LFS endpoint. The <path>
argument, if provided, is only used for a progress bar.
2014-06-02 22:56:01 +00:00
Smudge is typically run by Git's smudge filter, configured by the repository's
Git attributes.
2014-07-25 16:56:23 +00:00
## OPTIONS
Without any options, `git lfs smudge` outputs the raw Git LFS content to
standard output.
2014-07-25 16:56:23 +00:00
2015-09-23 20:22:38 +00:00
* `--skip`:
Skip automatic downloading of objects on clone or pull.
* `GIT_LFS_SKIP_SMUDGE`:
Disables the smudging process. For more, see: git-lfs-config(5).
## KNOWN BUGS
On Windows, Git does not handle files in the working tree larger than 4
gigabytes.
For more information, see: https://github.com/git-lfs/git-lfs/issues/2434.
2014-06-02 22:56:01 +00:00
## SEE ALSO
2015-11-16 20:31:26 +00:00
git-lfs-install(1), gitattributes(5).
2014-06-02 22:56:01 +00:00
2015-03-19 19:30:55 +00:00
Part of the git-lfs(1) suite.