pub struct FilterProcessArgs {
pub skip: bool,
}Expand description
Git filter process that converts between pointer and actual content
Implement the Git process filter API, exchanging handshake messages and then accepting and responding to requests to either clean or smudge a file.
filter-process is always run by Git’s filter process, and is
configured by the repository’s Git attributes.
In your Git configuration or in a .lfsconfig file, you may set
either or both of lfs.fetchinclude and lfs.fetchexclude to
comma-separated lists of paths. If lfs.fetchinclude is defined,
Git LFS pointer files will only be replaced with the contents of
the corresponding object file if their path matches one in that
list, and if lfs.fetchexclude is defined, pointer files will
only be replaced if their path does not match one in that list.
Paths are matched using wildcard matching as per gitignore(5).
Pointer files that are not replaced are simply copied to standard
output without change.
The filter process uses Git’s pkt-line protocol to communicate, and is documented in detail in gitattributes(5).
Fields§
§skip: boolSkip automatic downloading of objects on clone or pull.
Equivalent to GIT_LFS_SKIP_SMUDGE=1. Wired up by
git lfs install --skip-smudge.
Trait Implementations§
Source§impl Args for FilterProcessArgs
impl Args for FilterProcessArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl FromArgMatches for FilterProcessArgs
impl FromArgMatches for FilterProcessArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.