9951 explained code solutions for 126 technologies


gitHow to list not yet pushed commits


git log origin/main..HEADctrl + c
git

base command

log

will show interactive commits log viewer

origin/main

branch to view unpushed commits from (main in our case)

HEAD

compare everything with current HEAD revision