gitHow to list not yet pushed commits
git log origin/main..HEADctrl + c| gitbase command | logwill show interactive commits log viewer | 
| origin/mainbranch to view unpushed commits from ( | HEADcompare everything with current HEAD revision | 
Usage example
git log origin/main..HEADoutput
Author: nonunicorn <[email protected]>
Date:   Tue Jan 11 15:00:46 2022 +0000
    massive content editing updateMore of Git
- How to view project's short history
- How to view project's detailed history
- How to undo "git add" before commit
- Stash current changes without commit
- Remove an existing remote
- How to update forked repository from master
- How to rename local branch
- How to clone ssh repository
- How to add all files to commit
- How to untrack a file
See more codes...