How to exit a 'git status' list in a terminal?

后端 未结 14 1647
轮回少年
轮回少年 2020-11-28 00:52

I\'m new to Git and the terminal. How can I exit a listing mode generated by the git status command?

14条回答
  •  攒了一身酷
    2020-11-28 01:47

    You can disable pager for commands that don't recognize --no-pager flag.

    git config --global pager. false
    

    I disable for log aliases and set specific quantity to return.

    git config --global pager.log false
    

提交回复
热议问题