say i've got branch (called mybranch) on made changes.
i know doing git diff mybranch..master
me difference between mybranch , master, diff includes differences weren't caused by me. (ie., changes happened on master haven't pulled branch, dont care about!)
is there quick way me changes made on branch against master?
this show commits you've added master not mybranch:
git log mybranch..master --author "$(git config user.name)"
this show commits you've added mybranch not master:
git log master..mybranch --author "$(git config user.name)"
this show commits in branch not in master:
git log master..mybranch
Comments
Post a Comment