I'm working on a project and one of the requirements is the need to call git cherry
command to get some differences between on branch and the other - (note this is not git cherry-pick
).
I was planning to use ruby rugged
gem for this project but I cannot find anything in the documentation whether it supports the git cherry
API or not.
Rugged is a ruby wrapper around libgit2
but I could not find anything in its documentation either.
- git-cherry docs: https://git-scm.com/docs/git-cherry
- Rugged gem: https://github.com/libgit2/rugged
- LibGit2: https://github.com/libgit2/libgit2