(git) diff 输出相对路径?
Posted
技术标签:
【中文标题】(git) diff 输出相对路径?【英文标题】:(git) diff output relative path? 【发布时间】:2014-05-24 20:54:06 【问题描述】:我需要在我的 repo 中获取一些与 repo 的基础无关的差异,而是相对于给定的基础或给定的路径。
默认情况下我得到:
git diff
diff --git a/path/to/file b/path/to/file
index 0cc125e..9bf911e 100644
--- a/path/to/file
+++ b/path/to/file
但我想要的是这样的:
git diff --prefix=/new/path/to
diff --git a/new/path/to/file b/new/path/to/file
index 0cc125e..9bf911e 100644
--- a/new/path/to/file
+++ b/new/path/to/file
我查看了 --relative 选项(不是我要找的), --src/dst-prefix (这些只能更改“a”或“b”部分。我错过了一些基本的东西吗?
【问题讨论】:
它们是否都与 repo 的某些部分相关?如果没有,为什么不使用 vimdiff 或 meld 代替? 【参考方案1】:git diff
从 repo 的根目录打印(更改文件的)路径 - 无论您在哪里执行命令。
git diff --relative
将从您所在的目录打印路径。
因此,如果您需要不从 repo-root 开始的路径,请向下移动 (cd) 到您的路径开始的目录(在您的 repo 树内)。
【讨论】:
--relative
正是我在使用git diff --name-only
时所需要的,谢谢
--relative
排除当前目录之外的更改。【参考方案2】:
好像--src-prefix
和--dst-prefix
是你要的:
$ cd .../git/builtin
$ ed - var.c << end
> 0a
> xxx
> .
> wq
> end
$ git diff
diff --git a/builtin/var.c b/builtin/var.c
index aedbb53..5210013 100644
--- a/builtin/var.c
+++ b/builtin/var.c
@@ -1,3 +1,4 @@
+xxx
/*
* GIT - The information manager from hell
*
(到目前为止,非常标准;现在:)
$ git diff --src-prefix=a/new/ --dst-prefix=b/new/
diff --git a/new/builtin/var.c b/new/builtin/var.c
index aedbb53..5210013 100644
--- a/new/builtin/var.c
+++ b/new/builtin/var.c
@@ -1,3 +1,4 @@
+xxx
/*
* GIT - The information manager from hell
*
您可以将其与--relative
结合使用:
$ git diff --relative --src-prefix=a/new/ --dst-prefix=b/new/
diff --git a/new/var.c b/new/var.c
index aedbb53..5210013 100644
--- a/new/var.c
+++ b/new/var.c
@@ -1,3 +1,4 @@
+xxx
/*
* GIT - The information manager from hell
*
$
【讨论】:
我认为这是正确的,当然我从来没想过要同时尝试这两种方法。我讨厌移植补丁。 您似乎对 git 有深入的了解(我阅读了您的一些答案)。你有什么资源可以推荐吗? @Antarctica:十多年来,我一直在使用 Git(最近也对 Git 做出了一些贡献)。在这一点上,我没有任何我要特别推荐的东西,但是如果你正在寻找一本关于 Git 的好书,Pro Git book 有很多优点:它在线并保持最新,它是免费的,而且是正确的(不像太多的在线教程)。还有Think Like (a) Git,它涵盖了 Pro Git 中缺少的大部分内容。以上是关于(git) diff 输出相对路径?的主要内容,如果未能解决你的问题,请参考以下文章