Check what may be going to be done from master compared to current HEAD
git fetch && git log ..origin/master
That is, "go grab all of the stuff from the upstream, and then compare my current branch against the upstream master branch."
git fetch && git log ..origin/master
Comments
Post a Comment