Sometimes after fetching from remote repository I see my branch is behind:
> git status
On branch develop
Your branch is behind 'origin/develop' by 7 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)
Before updating my local branch I would like to see the log of what I'm about to get. I can do it using
> git log develop..origin/develop
Since I'm already on the develop branch, is there a way to do the above with less typing? That is, without providing local and remote branch names?
This would be especially useful since I often switch to feature branches and would like to see such logs for those, too.