kifi is a Rust-based command-line interface (CLI) program that provides a simple way to manage and track changes in your projects and repositories. It offers four main commands to streamline your version control workflow.
Before using kifi, you need to build and install it. Here are the steps to get started:
Before building kifi, make sure you have Rust installed on your system. You can install Rust by following the instructions at https://www.rust-lang.org/tools/install.
-
Clone the kifi repository:
git clone https://github.com/Vaurkhorov/kifi
-
Install kifi using Cargo (Rust's package manager):
cargo install --path kifi
This command will compile kifi and create a release version in the "target/release" directory.
-
To verify that the build was successful, run the following command:
./target/release/kifi --version
You should see the version information for kifi. If you don't, verify whether Cargo's bin is present in the environment path variable.
kifi provides the following commands:
This command initializes a new repository in the current directory. It sets up a kifi repository to start tracking files.
kifi init
Use this command to start tracking a specific file. Replace file_name
with the name of the file you want to track.
kifi track file_name
Generate diffs between the current and already pushed versions of tracked files. This helps you review changes before committing.
kifi preview
This command takes a 'snapshot', making a commit to the repository.
kifi klick
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) at your option.