- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试使用 git log -L <start>,<end>:<filename>
但我希望输出非常有限(实际上只是散列)。虽然 --pretty 以我想要的格式打印提交信息,但我没有找到不显示差异的方法...
例如在 linux-next 上,我尝试的是:
git log --pretty=format:"%H" -s -L 70,70:./arch/x86/include/asm/irqflags.h
其中(根据联机帮助页)-s 应该抑制 diff 的输出,但是输出是:
$ git log --pretty=format:"%H" -s -L 70,70:./arch/x86/include/asm/irqflags.h
6abcd98ffafbff81f0bfd7ee1d129e634af13245
diff --git a/include/asm-x86/irqflags.h b/include/asm-x86/irqflags.h
--- a/include/asm-x86/irqflags.h
+++ b/include/asm-x86/irqflags.h
@@ -1,2 +64,1 @@
-#ifdef CONFIG_X86_32
-# include "irqflags_32.h"
+{
96a388de5dc53a8b234b3fd41f3ae2cedc9ffd42
diff --git a/include/asm-x86/irqflags.h b/include/asm-x86/irqflags.h
--- /dev/null
+++ b/include/asm-x86/irqflags.h
@@ -0,0 +1,2 @@
+#ifdef CONFIG_X86_32
+# include "irqflags_32.h"
我使用的是 git 版本 2.10.2
最佳答案
Git 2.22(2019 年第 2 季度)会更加清晰。
“git log -L<from>,<to>:<path>
”和“-s
”没有打补丁应有的输出。
这已得到纠正。
参见 commit 05314ef (2019 年 3 月 11 日),以及 commit 9f607cd (2019 年 3 月 7 日)作者:Jeff King ( peff
) .
(由 Junio C Hamano -- gitster
-- 在 commit 31df2c1 中 merge ,2019 年 4 月 9 日)
line-log
: detect unsupported formats
If you use "
log -L
" with an output format like "--raw
" or "--stat
", we'll silently ignore the format and just output the normal patch.
Let's detect and complain about this, which at least tells the user what's going on.
现在它会清楚地显示:
-L does not yet support diff formats besides -p and -s
在 Git 2.25(2020 年第一季度)中,文档增加了更多内容。
参见 commit 2be4586 , commit 2be4586 (2019 年 12 月 26 日)Philippe Blain ( phil-blain
) .
(由 Junio C Hamano -- gitster
-- merge 于 commit c4117fc,2020 年 1 月 6 日)
doc:
log
,gitk
: document accepted line-log diff formats
Currently the line-log functionality (
git log -L
) only supportsdisplaying patch output (-p | --patch
, its default behavior) and suppressing it(-s | --no-patch
).
A check was added in the code to that effect in 05314ef(line-log
: detect unsupported formats, 2019-03-10) but the documentation was not updated.Explicitly mention:
- that
-L
implies-p
,that patch output can be suppressed using-s
,- and that all other diff formats are not allowed.
和:
The line number, regex or offset parameters and in
git log -L <start>,<end>:<file>
, or the function name regex ingit log -L :<funcname>:<file>
must exist in the starting revision, or else the command exits with a fatal error.
所以,除了You can specify this option more than once
,你有:
Implies
--patch
.
Patch output can be suppressed using--no-patch
, but other diff formats (namely--raw
,--numstat
,--shortstat
,--dirstat
,--summary
,--name-only
,--name-status
,--check
) are not currently implemented.
在 Git 2.30(2021 年第一季度)中,“ git log
( man )” 被记录为不采用路径规范,但这不是由命令行选项解析器强制执行的,它已被更正。
参见 commit 39664cb (2020 年 11 月 4 日)Junio C Hamano ( gitster
) .
(由 Junio C Hamano -- gitster
-- merge 于 commit f8a1cee,2020 年 11 月 18 日)
log
: diagnose-L
used with pathspec as an errorHeled-by: Jeff King
The
-L
option is documented to accept no pathspec, but the command line option parser has allowed the combination without checking so far.
Ensure that there is no pathspec when the-L
option is in effect to fix this.Incidentally, this change fixes another bug in the command line option parser, which has allowed the
-L
option used together with the--follow
option.
Because the latter requires exactly one path given, but the former takes no pathspec, they become mutually incompatible automatically.
Because the-L
option follows renames on its own, there is no reason to give--follow
at the same time.The new tests say they may fail with "
-L
and--follow
being incompatible" instead of "-L
and pathspec being incompatible".Currently, the expected failure can come only from the latter, but this is to future-proof them, in case we decide to add code to explicitly die on-L
and--follow
used together.
关于git log -L 没有差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41427590/
不同的 LogCat 方法是: Log.v(); // Verbose Log.d(); // Debug Log.i(); // Info Log.w(); // Warning Log.e();
在android群里,经常会有人问我,android log是怎么用的,今天我就把从网上以及sdk里东拼西凑过来,让大家先一睹为快,希望对大家入门android log有一定的帮助. android
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 4 年前。 社区 12
我正在尝试使用 sonarlint 检查代码质量.上面的问题概要,我不明白为什么它要说要大写。但是 this discussion与上述建议相反。哪一个应该被认为是正确的? 最佳答案 这没有正确答案,
随着 n 变大,log*(log n) 和 log(log* n) 这两个函数会更快吗? 这里,log* 函数是迭代对数,定义如下: 我怀疑它们是相同的,只是写法不同,但它们之间有什么区别吗? 最佳答
作为家庭作业,我被要求在 O(log(n)) 中编写一个算法,我可以计算出我编写的算法的复杂度为 O(log(n) + log(n/2) + log(n/4) + log(n/8) + ... + l
我正在使用 Tomee。日志文件夹包含这样的文件 localhost_access_log.2016-12-02.txt localhost.2016-12-02.log catalina.2016-
Android Log.v、Log.d、Log.i、Log.e 等的 ios 等效项是什么?同样在 android 上,我使用 Android 设备监视器和 logcat 来访问我的手机日志,我需要在
我认为下面的代码是 O(log log n) 因为它里面有 i*i 但我对 log n 感到困惑> 和 log (log n)。 for (i=2; i*i<=number; i++) { if
我正在修改 kvm 模块,并在内核代码中添加了 printk 语句。运行虚拟机后,printk 为我提供了错误地址和有关 guest 操作系统的其他信息。 我需要从这个信息中生成统计信息。当我使用 d
我有一个部署为 Windows Azure Web 角色的 WCF 服务。 我正在使用 Enterprise Library 进行异常处理,并且在我的本地 Development Fabric 中,似
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 年前。 Improv
在 Go 的生产中使用 log.SetFlags(log.LstdFlags | log.Lshortfile) 是好的做法(至少是一般做法)吗?我想知道在生产中这样做是否存在性能或安全问题。因为它不
我想知道什么更快: double value = Math.log(a) - Math.log(b); 或 double value = Math.log(a/b); 我计算值的方式是否会对性能产生影
我有数百个子例程使用 log.Println() 写入日志文件 我正在使用 log.Println 写入 error.log 文件。 func main() { e, err := os.Open
我将 Nuxt 与 SSR 一起使用,并希望有类似于 apaches 的 access.log 和 error.log 的东西 我特别感兴趣的是每次调用的响应时间。 我在 nuxt 文档中找不到任何内
我知道以前有人问过这个问题,但我相信这是一个不同的问题。 Nginx 在 www-data 下运行: $ ps -eo "%U %G %a" | grep nginx root root
我在我的日志文件中发现了一个非常奇怪的条目 Jan 29 01:35:30 vs-proj-handy sshd[5316]: Received disconnect from 130.207.203
对于我正在开发的应用程序,我希望在开发过程中和发布时简化故障排除。我希望能够检索到对 Log 的调用,以了解在 USB 调试中没有连接手机的情况下运行应用程序时的调用,以便可以检索并发送给我。例如,当
我试图捕获 panic 并记录错误: func (s *server) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloRep
我是一名优秀的程序员,十分优秀!