gpt4 book ai didi

git - git log -p 忽略文件

转载 作者:太空狗 更新时间:2023-10-29 13:33:51 27 4
gpt4 key购买 nike

我正在尝试总结我在一个项目上的工作。问题是我不想在 git log --patch 的输出中包含测试文件。

这些文件位于一个名为mtest 的目录中;但是,该文件夹还包含我想要显示的测试套件代码。我要排除的测试文件具有扩展名 mscxxml,因此我希望过滤器基于此工作。

我看过Making 'git log' ignore changes for certain paths但这看起来排除了修改文件的提交,而不是简单地排除文件。

有办法吗?

我试过 Jubobs 的答案,它似乎有效,但令人惊讶的是,即使打开了过滤器,也出现了 2 个文件。

我用这个小存储库复制了这个:

mkdir test
cd test
git init
echo 'readme' > README
git add .
git commit -m "Initial commit"

mkdir test2
cd test2
echo 't1' > test1.cpp
echo 't2' > test2.xml
git add .
git commit -m "c2"

echo 't3' > test3.cpp
echo 't4' > test4.xml
git add .
git commit -m "c3"

我注意到在创建目录时文件没有被过滤。我尝试了以下命令:

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

这导致包含两个 xml 文件。

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

这令人惊讶地过滤掉了 test4.xml 而不是 test2.xml

最佳答案

我不知道您正在/正在使用哪个版本的 Git,但您报告的问题似乎已在 Git 1.9.5 中修复(有关错误修复的更多详细信息,请参阅 this)。以下命令

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

在你的玩具示例中做你想做的事:正如你在下面看到的,所有 *.xml 文件都根据需要被过滤掉。

$ mkdir test
$ cd test
$ git init
Initialized empty Git repository in /Users/jubobs/Desktop/test/.git/

$ echo 'readme' > README
$ git add .
$ git commit -m "initial commit"
[master (root-commit) ad6cc73] initial commit
1 file changed, 1 insertion(+)
create mode 100644 README

$ mkdir test2
$ cd test2
$ echo 't1' > test1.cpp
$ echo 't2' > test2.xml
$ git add .
$ git commit -m "c2"
[master 8d733a2] c2
2 files changed, 2 insertions(+)
create mode 100644 test2/test1.cpp
create mode 100644 test2/test2.xml

$ echo 't3' > test3.cpp
$ echo 't4' > test4.xml
$ git add .
$ git commit -m "c3"
[master 3e8a3f6] c3
2 files changed, 2 insertions(+)
create mode 100644 test2/test3.cpp
create mode 100644 test2/test4.xml

$ git log --patch -- . ":(exclude)*.xml"
commit 3e8a3f6c627576e8f7d1863b92d4f631ae309417
Author: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Date: Sat Dec 27 00:19:56 2014 +0100

c3

diff --git a/test2/test3.cpp b/test2/test3.cpp
new file mode 100644
index 0000000..6d6ea65
--- /dev/null
+++ b/test2/test3.cpp
@@ -0,0 +1 @@
+t3

commit 8d733a27a0e2c9f4c71e7b64742107255035d6cd
Author: xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Date: Sat Dec 27 00:19:33 2014 +0100

c2

diff --git a/test2/test1.cpp b/test2/test1.cpp
new file mode 100644
index 0000000..795ea43
--- /dev/null
+++ b/test2/test1.cpp
@@ -0,0 +1 @@
+t1

关于git - git log -p 忽略文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25339828/

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