Fulltext results:
- Git
- unmerges branches === List branches with commits, which are not in branch REF: git branch --no-merged REF For example, list unmerged branches, which are not in ''develop'': git branch --no-merged ... merges commits === List commits in branch BRANCH, which are not in branch REF: git cherry -v REF BRANCH For example, list commits in a feature branch, which are not in ''develop'': git cherry -v develop f