Version control system written in rust.
- Run config and select folders to ignore:
cargo run config -i='target .git'. - Init
cargo run init. - To make commit type:
cargo run commit -t='my simple commit title'. -t means title alternatively use --title= - To see logs type
cargo run log - To see the status of changes type
cargo run status - If you want to go back to some commit just type:
cargo run back -t=dc093dc4-af1e-411a-b41a-42866869615aIn -t you type id of commit which you want to go back. You get that id from log.
