Git show commits diff between tw
2019-09-27 本文已影响0人
JaedenKil
Say there is a master
branch, create a new dev
branch.
To list the commits which are in dev
but not in master
:
git log master..dev --oneline
git log --name-status release..test
Show the commits that are in the "test" branch but not yet in the "release" branch, along with the list of paths each commit modifies.