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
- Check out file from cache by a copy or link
Enums
- Recheck messages to be sent to the channel created by
make_recheck_handler.
Functions
- Run
xvc file recheckcommand on the repositoryxvc_rootwithcli_optsoptions. - Build a recheck handler in a separate thread and connect it with a channel. You must build an ignore writer with
make_ignore_handlerbefore building this. All rechecked files are gitignored using givenignore_handler. Use the returned channel to sendRecheckOpmessages to recheck files, then sendNoneto the channel to exit from the loop and join the returned thread.
Type Aliases
- The actual messages in channels are
Option<T>to close the channel by sendingNonewhen the operation ends.