I\'m new to Git and the terminal. How can I exit a listing mode generated by the git status command?
git status
You can disable pager for commands that don't recognize --no-pager flag.
--no-pager
git config --global pager. false
I disable for log aliases and set specific quantity to return.
git config --global pager.log false