git-xcrypt 0.2.0

Transparent, deterministic encryption of selected files in a git repository: plaintext in your working tree, ciphertext in the remote.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The user-facing commands.
//!
//! Each one returns a [`crate::Result`]; the binary turns an error into the
//! matching exit code. Nothing here writes to `stdout` unless the command's
//! whole purpose is to produce output.

pub mod diff;
pub mod export_key;
pub mod filter;
pub mod init;
pub mod lock;
pub mod process;
pub mod status;
pub mod sync;
pub mod unlock;