gpt4 book ai didi

git - 为什么 pathspec 不是魔法 :(exclude) excluding the specified files from git log's output?

转载 作者:太空狗 更新时间:2023-10-29 12:47:36 25 4
gpt4 key购买 nike

这是 Ignore files in git log -p 的后续行动也与Making 'git log' ignore changes for certain paths有关.

我正在使用 Git 1.9.2。我正在尝试使用 pathspec 魔法 :(exclude) 来指定某些补丁不应显示在 git log -p 的输出中。但是,我想要排除的补丁仍然显示在输出中。

这是一个重现这种情况的最小工作示例:

$ cd ~/Desktop
$ mkdir test_exclude
$ cd test_exclude
$ git init
$ mkdir testdir
$ printf "my first cpp file\n" > testdir/test1.cpp
$ printf "my first xml file\n" > testdir/test2.xml
$ git add testdir/
$ git commit -m "added two test files"

现在我想显示我历史上的所有补丁,除了那些对应于 testdir 文件夹中的 XML 文件的补丁。因此,关注VonC's answer , 我跑

$ git log --patch -- . ":(exclude)testdir/*.xml"

但是我的 testdir/test2.xml 文件的补丁仍然显示在输出中:

commit 37767da1ad4ad5a5c902dfa0c9b95351e8a3b0d9
Author: xxxxxxxxxxxxxxxxxxxxxxxxx
Date: Mon Aug 18 12:23:56 2014 +0100

added two test files

diff --git a/testdir/test1.cpp b/testdir/test1.cpp
new file mode 100644
index 0000000..3a721aa
--- /dev/null
+++ b/testdir/test1.cpp
@@ -0,0 +1 @@
+my first cpp file
diff --git a/testdir/test2.xml b/testdir/test2.xml
new file mode 100644
index 0000000..8b7ce86
--- /dev/null
+++ b/testdir/test2.xml
@@ -0,0 +1 @@
+my first xml file

我做错了什么?我应该怎么做才能告诉 git log -p 不要显示与我的 testdir 文件夹中的所有 XML 文件关联的补丁?

最佳答案

没关系。该问题似乎已在 Git 1.9.5 中得到修复(更具体地说,在 commit ed22b4173bd8d6dbce6236480bd30a63dd54834e 中)。我上面问题中的玩具示例在 Git 2.2.1 中按预期工作:

$ git --version
git version 2.2.1
$ mkdir test_exclude
$ cd test_exclude/
$ git init
Initialized empty Git repository in /Users/jubobs/Desktop/test_exclude/.git/
$ mkdir testdir
$ printf "my first cpp file\n" > testdir/test1.cpp
$ printf "my first xml file\n" > testdir/test2.xml
$ git add testdir/
$ git commit -m "added two test files"
[master (root-commit) 5429d04] added two test files
2 files changed, 2 insertions(+)
create mode 100644 testdir/test1.cpp
create mode 100644 testdir/test2.xml

$ git log --patch -- . ":(exclude)testdir/*.xml"
commit 5429d047f140f96c5d6167d083fc1a5eab05fb19
Author: xxxxxxxxxxxxxxxxxxxxxxxxx
Date: Fri Dec 26 23:40:18 2014 +0100

added two test files

diff --git a/testdir/test1.cpp b/testdir/test1.cpp
new file mode 100644
index 0000000..3a721aa
--- /dev/null
+++ b/testdir/test1.cpp
@@ -0,0 +1 @@
+my first cpp file

如您所见,在 git log 命令的输出中没有提及 test2.xml,正如所希望的那样。

关于git - 为什么 pathspec 不是魔法 :(exclude) excluding the specified files from git log's output?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25362738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com