Tutorial by Examples: commit

Command git cherry shows the changes which haven't yet been cherry-picked. Example: git checkout master git cherry development ... and see output a bit like this: + 492508acab7b454eee8b805f8ba906056eede0ff - 5ceb5a9077ddb9e78b1e8f24bfc70e674c627949 + b4459544c000f4d51d1ec23f279d9cdb19c1d32b...
The easy way This won't work if there are merge commits in your selection The advanced way Start the rebase dialog:
git diff-tree --no-commit-id --name-only -r COMMIT_ID

Page 5 of 5