To see commits that are there in mybranch but not in master:
git log master..mybranch --oneline
To see commits that are there in master, but not in mybranch:
git log mybranch..master --oneline
git log master..mybranch --oneline
To see commits that are there in master, but not in mybranch:
git log mybranch..master --oneline
No comments:
Post a Comment