I have created a Master branch like this:
git branch -u MyMasterBranch origin/MyMasterBranch
and I have created other branches from that like this:
git checkout MyMasterBranch
git checkout -b myJIRAbranch-1
and have worked on those smaller myJIRAbranch-1
branches and have merged them at the end to the MyMasterBranch
with git merge --squashmyJIRAbranch-1
Now I want to find the git commit numbers for those merges that I have done from my JIRA branches into my MyMasterBranch ?
What's a good command to do that? that gives me a clean and nice report?