get remove unpushed commits code example
Example 1: get unpushed commits
git log origin/master..HEAD
Example 2: git discard all unpushed commits
# Remove ALL commits up to commit hash.
# NB: Make sure these commits have not been pushed.
git reset --hard <commit hash number>