github.com/x-oss-byte/git-lfs@v2.5.2+incompatible/docs/man/git-lfs-filter-process.1.ronn (about)

     1  git-lfs-filter-process(1) -- Git filter process that converts between pointer and actual content
     2  ===========================================================================================
     3  
     4  ## SYNOPSIS
     5  
     6  `git lfs filter-process`
     7  `git lfs filter-process --skip`
     8  
     9  ## DESCRIPTION
    10  
    11  Implement the Git process filter API, exchanging handshake messages and then
    12  accepting and responding to requests to either clean or smudge a file.
    13  
    14  filter-process is always run by Git's filter process, and is configured by the
    15  repository's Git attributes.
    16  
    17  The filter process uses Git's pkt-line protocol to communicate, and is
    18  documented in detail in gitattributes(5).
    19  
    20  ## OPTIONS
    21  
    22  Without any options, filter-process accepts and responds to requests normally.
    23  
    24  * `--skip`:
    25      Skip automatic downloading of objects on clone or pull.
    26  
    27  ## SEE ALSO
    28  
    29  git-lfs-clean(1), git-lfs-install(1), git-lfs-smudge(1), gitattributes(5).
    30  
    31  Part of the git-lfs(1) suite.