git branch ~(END) on terminal?

GitCommand LineTerminal

Git Problem Overview


To note, I'm on Oh-My-Zsh and git 2.17. Whenever I type in git branch, instead of showing me the branches of my git, it shows something like this:

~
~
~
~
~
(END)

I can quit this by pressing 'q' on my keyboard, but I'm still confused as to why this is appearing.

Git Solutions


Solution 1 - Git

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.

Solution 2 - Git

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

Solution 3 - Git

Note that:

Solution 4 - Git

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBrian ParkView Question on Stackoverflow
Solution 1 - GitGary MendoncaView Answer on Stackoverflow
Solution 2 - GitFredView Answer on Stackoverflow
Solution 3 - GitVonCView Answer on Stackoverflow
Solution 4 - GitRiantraView Answer on Stackoverflow