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

后端 未结 14 1609
轮回少年
轮回少年 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:29

    first of all you need to setup line ending preferences in termnial

    git config --global core.autocrlf input
    git config --global core.safecrlf true
    

    Then you can use :q

提交回复
热议问题