How to view not yet pushed (unpushed) Git Commits
Posted: Tue Jun 07, 2016 6:15 pm
git log origin/master..HEAD
You can also view the diff using the same syntax
git diff origin/master..HEAD
You can also view the diff using the same syntax
git diff origin/master..HEAD