Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试查看 git -add -i -> 'add untracked' 的所有结果,但我无法查看前几个结果。我知道 git 内部有一个分页功能,但我似乎找不到它。有什么建议么?
有两种方法可以做到这一点。
您可以将任何 Git 命令通过管道传输到寻呼程序,例如less:
less
git status | less
这不会保留 Git(可能)通常输出的任何文本颜色。
第二种方法是使用git命令的两个分页选项之一。要使用特定的寻呼机命令:
git
git --pager=<pager command> status
或使用默认的 Git 寻呼机命令:
git --paginate status