Compares the commits by summary of two branches in a Git repository.
- Rust.
Clone the repository:
$ git clone git@github.com:JavierPoduje/fdiff.gitBuild:
$ cargo build --releaseMake it executable anywhere:
$ sudo cp target/release/fdiff /usr/bin/fdiffGet the commits in branch1 that doesn't exist in branch2:
$ fdiff branch1 branch2Same as above but excluding the commits that have the fix/ or release/ substrings in them:
$ fdiff branch1 branch2 --exclude fix/ release/