git-sync-rs 0.7.7

Automatic git repository synchronization with file watching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod config;
pub mod error;
pub mod sync;
#[cfg(feature = "tray")]
pub mod tray;
pub mod watch;

pub use config::{Config, ConfigLoader, DefaultConfig, RepositoryConfig};
pub use error::{Result, SyncError};
pub use sync::{
    CommandGitTransport, CommitOutcome, FallbackState, GitTransport, RepositoryState,
    RepositorySynchronizer, SyncConfig, SyncState, UnhandledFileState, FALLBACK_BRANCH_PREFIX,
};
pub use watch::{watch_with_periodic_sync, WatchConfig, WatchManager};