如何在 Git 别名中包含 --no-pager?

发布于 2024-10-18 16:35:05 字数 421 浏览 3 评论 0原文

我根据 EdgeCase 的 Git Immersion 教程创建了一个 Git 别名,如下所示:

hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short

但现在看来对结果进行分页 — 结果显示后,终端显示 (END),迫使我点击 Q 继续工作。我读到,通过添加 --no-pager 标签,您可以禁用此功能;如何将其合并到别名中?我在最后、日志之前和之后都尝试过,但没有一个起作用。 Git 会抛出错误,指出它是无法识别的参数,或者它更改了环境变量。有什么建议吗?

I created a Git alias based off of the Git Immersion tutorial by EdgeCase that looks like this:

hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short

But now it seems to be paging the results — Terminal shows (END) after the results are displayed, forcing me to hit Q to continue working. I read that by adding in the --no-pager tag, you can disable this feature; how do I incorporate it into the alias? I've tried it at the end, before the log, and right after, and none of them have worked. Git throws an error saying it is an unrecognized argument, or that it changes environment variables. Any advice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

我们的影子 2024-10-25 16:35:05

您只需将其转换为 shell 命令即可轻松完成此操作:

hist = "!git --no-pager log ..."

You can do that easily by just turning it into a shell command:

hist = "!git --no-pager log ..."
肩上的翅膀 2024-10-25 16:35:05

注意:在 Git 2.18(2018 年第 2 季度)中,别名可以使用更短的 --no-pager 选项:
git --no-pager cmd”没有简短而甜蜜的单字母选项。现在确实如此。

别名现在可以是:

hist = "!git -P log ..."

请参阅 commit 7213c28(2018 年 5 月 3 日),作者:Johannes Sixt (j6t)
(由 Junio C Hamano -- gitster -- 合并于 提交 c9aac55,2018 年 5 月 23 日)

git:添加 -P 作为 --no-pager

的简短选项

可以配置“less”寻呼机以使用备用
屏幕显示内容,例如,通过在
环境。
当在此配置中关闭它时,它会切换回原始屏幕,并且所有内容都会消失。

要求输出在以下位置保持可见的情况并不少见:
终端。为此,可以使用选项--no-pager
但即使命令完成时,输入也有点麻烦
可用。
提供一个简短的选项-P,使选项更加丰富
易于访问。

Note: with Git 2.18 (Q2 2018), the alias can use a shorter option for --no-pager:
"git --no-pager cmd" did not have short-and-sweet single letter option. Now it does.

The alias can now be:

hist = "!git -P log ..."

See commit 7213c28 (03 May 2018) by Johannes Sixt (j6t).
(Merged by Junio C Hamano -- gitster -- in commit c9aac55, 23 May 2018)

git: add -P as a short option for --no-pager

It is possible to configure 'less', the pager, to use an alternate
screen to show the content, for example, by setting LESS=RS in the
environment.
When it is closed in this configuration, it switches back to the original screen, and all content is gone.

It is not uncommon to request that the output remains visible in
the terminal. For this, the option --no-pager can be used.
But it is a bit cumbersome to type, even when command completion is
available.
Provide a short option, -P, to make the option more
easily accessible.

美人如玉 2024-10-25 16:35:05

--no-pager 选项在 log 之后使用时会出现 无法识别的选项 错误,但它可以通过将 --no-pager 放在 log 之前来实现 - “git --no-寻呼机日志......“有效

The --no-pager option gives an unrecognized option error when used after log, but it worked by putting --no-pager before log - "git --no-pager log .... " worked

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文