描述:
执行git branch
后的行为和git branch | less
一样,查看文件格式打开,需要输入 :q 退至命令行。
分析:
git 2.16版本后的默认行为:https://github.com/git/git/blob/master/Documentation/RelNotes/2.16.0.txt
恢复之前的默认行为:
git config --global pager.branch false
执行git branch
后的行为和git branch | less
一样,查看文件格式打开,需要输入 :q 退至命令行。
git 2.16版本后的默认行为:https://github.com/git/git/blob/master/Documentation/RelNotes/2.16.0.txt
恢复之前的默认行为:
git config --global pager.branch false