github.com/q2/git-lfs@v0.5.1-0.20150410234700-03a0d4cec40e/docs/man/git-lfs-smudge.1.ronn (about)

     1  git-lfs-smudge(1) -- Git smudge filter that converts pointer in blobs to the actual content.
     2  ==============================================================================================
     3  
     4  ## SYNOPSIS
     5  
     6  `git lfs smudge` <path>
     7  
     8  ## DESCRIPTION
     9  
    10  Smudge takes a Git LFS pointer file in STDIN, parses out the pointer's ID,
    11  and then dumps the file's contents to STDOUT.  The file will be downloaded from
    12  the Git LFS endpoint if needed. The optional <path> argument is only used for
    13  a progress bar.
    14  
    15  Smudge is typically run by Git's smudge filter, configured by the repository's
    16  Git attributes.
    17  
    18  ## OPTIONS
    19  
    20  Without any options, `git lfs smudge` will output the raw Git LFS content to
    21  STDOUT.
    22  
    23  * `--info`:
    24      Displays the file size, and the local path to the Git LFS file.  If the file
    25      does not exist, `--` is shown.
    26  
    27  ## SEE ALSO
    28  
    29  git-lfs-init(1), gitattributes(5).
    30  
    31  Part of the git-lfs(1) suite.