Compares the commits by summary of two branches in a Git repository.
- Rust.
Clone the repository:
$ git clone [email protected]:JavierPoduje/fdiff.git
Build:
$ cargo build --release
Make it executable anywhere:
$ sudo cp target/release/fdiff /usr/bin/fdiff
Get the commits in branch1
that doesn't exist in branch2
:
$ fdiff branch1 branch2
Same as above but excluding the commits that have the fix/
or release/
substrings in them:
$ fdiff branch1 branch2 --exclude fix/ release/