For a web site, I have master and staging, I have worked on staging for about 10 days. How do I tell for sure what has changed since my last merge, or when that merge was? M
Take the latest merge and give branch name which merged to current branch
MC=git log --merges -n 1 | grep request; BB=${MC##*:}; B=${BB%% }; SUBBRANCH=${B##/} echo $MC
git log --merges -n 1 | grep request