An open API service indexing awesome lists of open source software.

https://github.com/pv/git-cherry-tree

Find commits not yet merged or cherry-picked. Same as `git-cherry`, but with extra features and bling.
https://github.com/pv/git-cherry-tree

Last synced: about 1 month ago
JSON representation

Find commits not yet merged or cherry-picked. Same as `git-cherry`, but with extra features and bling.

Awesome Lists containing this project

README

        

git-cherry-tree
===============

Find commits not merged in the current branch.

Same as ``git-cherry``, but (optionally) consider only patches touching given
subdirs, and try hard to check if the patch was actually applied. Has also
extra features for interactive picking of a patch sequence.

Examples::

Which patches are in master branch, but not in the current one
$ git cherry-tree master

Which patches are in master branch, in directory `spam`, but not in current
$ git cherry-tree master -- spam

Interactively cherry-pick missing patches in `spam` directory
$ git cherry-tree -p master -- spam