Emacs:为什么shell命令“git log”有效,但“git shortlog”不行?

我无法弄清楚这一点.为什么这些行为有所不同:
(shell-command "git log")
(shell-command "git shortlog")

第一个按预期工作:返回0并将东西打印到shell输出缓冲区.
第二个返回0但不打印任何内容.这是为什么?

> git log和git shortlog在ansi-term中都能很好地工作
> git log和git shortlog都会发出警告,但仍然可以在shell中运行

男人git-shortlog

If no revisions are passed on the command line and either standard
input is not a terminal or there is no
current branch,git shortlog will output a summary of the log read from standard input,without reference to
the current repository.

您必须明确提供您案例中的工作参考,

请改用git shortlog HEAD.

相关文章

普通模式 >G 增加当前行到文档末尾处的缩紧层级 $ 移动到本行的末尾 . 相当于一个...
原文连接: https://spacevim.org/cn/layers/lang/elixir/ 模块简介 功能特性 启用模块 快捷键 语言专属...
原文连接: https://spacevim.org/cn/layers/lang/dart/ 模块简介 功能特性 依赖安装及启用模块 启用模...
 =   赋值操作符,可以用于算术和字符串赋值 +        加法计算     -        减法运算...
1.根据包名来查看指定的APP指定数据 adb shell "top | grep com.xxx.xxx" 由于这样打印出来的数...
ctrl+F 向下翻页 ctrl+B 向下翻页 u 取消最近一次操作 U 取消当前行的操作 ZZ 保存当前内容并退出 gg 跳...