I completed all the features that was planned. However I haven't tested enough to ensure this program works as intended. I'm currently dog fooding this program and fixing known bugs. If you want to use stable version, then you may have to wait.
Rif checks corelation between files and decide whether the files are stale or fresh. You can use this program or library(yet to come) when you need to make sure all files are up to date when files refer multiple other files.
This is a project derived from my project called gesign. Gesign was a independent editor thus not so versatile and somewhat clunky to use with other programs. On the other side, rif aims to make a file references checking easily attachable and cross platform by default.
Rif aims to help designers to track document changes. Especially when the documents are highly modular and interconnected. A generic usage is game design documents.
Designer can add a file to rif project and set references(children) to the file(parent). Whenever any child file changes, the parent file's status also changes. This process is manually checked by rif binary(at least for now).
For example,
In this case levelmanager depends on the level because level's change can affect a behaviour of level manager. Thus change of level's content makes level manager's status to stale which informs a designer to manually reassure if level manager's content should be updated or not. After designer applys proper modification, levelmanager's status gets updated. In this way, designer can minimize logical errors derived from unnoticed file relationships.
Basics
```bash
rif init
rif status -i --ignore : Ignore untracked files -v --verbose : Alsy display list output
rif ls
rif add
rif rm
rif set
rif unset
rif discard
rif commit
Binary ```bash
rif init -d
rif add .
rif commit
rif status
rif list -d 0 ```
Library
Not yet
You can set several config options. I'm planning to add more config options. Config file is located inc "$PWD/.rif/config".
```bash
cargo install rif --features binary
cargo install rif --features binary,color ```
Make sure rust langauge is installed. Link ```
git clone https://github.com/simhyeon/rif
cd rif && cargo build --release ```