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.
- Host: GitHub
- URL: https://github.com/pv/git-cherry-tree
- Owner: pv
- Created: 2010-06-12T16:53:25.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T16:54:23.000Z (about 1 year ago)
- Last Synced: 2025-03-28T17:47:44.079Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
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 masterWhich patches are in master branch, in directory `spam`, but not in current
$ git cherry-tree master -- spamInteractively cherry-pick missing patches in `spam` directory
$ git cherry-tree -p master -- spam