Posts

Showing posts from February, 2019

Check what will be pushed up to remote from current HEAD

 git diff --stat --cached origin/master

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."