Expand description
Data structures and functions for xvc file recheck
.
- RecheckCLI describes the command line options.
- cmd_recheck is the entry point for the command line.
Structs§
- RecheckCLI
- Check out file from cache by a copy or link
Enums§
- Recheck
Operation - Recheck messages to be sent to the channel created by
make_recheck_handler
.
Functions§
- cmd_
recheck - Run
xvc file recheck
command on the repositoryxvc_root
withcli_opts
options. - make_
recheck_ handler - Build a recheck handler in a separate thread and connect it with a channel.
You must build an ignore writer with
make_ignore_handler
before building this. All rechecked files are gitignored using givenignore_handler
. Use the returned channel to sendRecheckOp
messages to recheck files, then sendNone
to the channel to exit from the loop and join the returned thread.
Type Aliases§
- Recheck
Op - The actual messages in channels are
Option<T>
to close the channel by sendingNone
when the operation ends.