Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

incoming, outgoing

git incoming - After a fetch it will show what is on the remote main branch that I have not merged into my own main.

$ git log origin/main ^main

git outgoing - What is on my main branch that has not been pushed to the remote main branch.

$ git log main ^origin/main