终端上的 git 分支 ~ (END) ? ?

注意,我在 Oh-My-Zsh 和 git 2.17上。每当我输入 git 分支时,它不会显示 git 的分支,而是显示如下内容:

~
~
~
~
~
(END)

我可以通过在键盘上按“ q”来退出,但是我仍然不明白为什么会出现这种情况。

47066 次浏览

Git pipes long output into what's called a pager by default, which can make it easier to view the output if it doesn't fit on a screen. The ~ characters indicate that those lines were not in the original output, but it's showing them so that you can scroll down past the bottom (i.e. the last line of output can go up to the top of the screen).

You typically can use the arrow keys to scroll up or down, and can exit by pressing q.

Note that:

You can replace the pager with less so it doesn't "scroll" outputs less than the height of the terminal.

git config --global --replace-all core.pager "less -F -X"

I found it from this q. Took a while to find compared to OPs questions, so I figured I'd drop it here in case anyone else has the same issue.

https://stackoverflow.com/a/14118014/4881742

you can use this " git config --global core.pager cat " to change your git configuration to set that as default the problem is sometime when you use or install Oh My Zsh the configuration is change