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

32 lines
890 B
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
2015-03-19 19:30:55 +00:00
`git lfs smudge` <path>
2014-06-02 22:56:01 +00:00
## DESCRIPTION
Read a Git LFS pointer file from standard input, parse out the pointer's ID,
and then dump the file's contents to standard output. Download the file from
the Git LFS endpoint if needed. The optional <path> argument is only used for
2014-06-02 22:56:01 +00:00
a progress bar.
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
* `--info`:
Display the file size and the local path to the Git LFS file. If the file
does not exist, show `--`.
2014-07-25 16:56:23 +00:00
2014-06-02 22:56:01 +00:00
## SEE ALSO
2015-03-19 19:30:55 +00:00
git-lfs-init(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.