A branch, called mil-1
(for milestone) was created from master some time ago. There have been changes to master since this branch was created. I need to review them and merge some of them into the milestone branch.
After running git fetch --all
, git log refs/heads/master
lists the changes in master; and I know how to restrict them to a certain number of commits:
$ git log -1 origin/master
commit 5401cc7edf382183537a011632c422a491faea5b
Author: ********
Date: Wed May 28 18:29:59 2014 +0530
But how do I restrict the output to only to commits done after the mil-1
branch was created?