supgit 0.2.0

A simple Git CLI wrapper for common Git operations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod branch;
mod clone;
mod commit;
mod reset;
mod stage;
mod sync;
mod unstage;
mod update;

pub use branch::{create_branch, delete_branch, run_branch_interactive};
pub use clone::run_clone;
pub use commit::run_commit;
pub use reset::run_reset;
pub use stage::stage_targets;
pub use sync::{run_pull, run_push, run_sync};
pub use unstage::restore_stage;
pub use update::{check_and_auto_update, run_self_update};