仅在补丁后使用git diff或git format-patch来获取修改后的行范围

时间:2019-02-21 12:02:57

标签: git diff git-diff format-patch

我希望能够调用git diff [something] <commit0>..<commit1>并获取自提交0以来已被修改的提交1中的文件名和行号。 目前,如果我有

# foo.txt
foo

bar

然后更改'\ nbar \ n'->'baz',我得到

diff --git a/foo.txt b/foo.txt
index 29a4dcd7..28932e58 100644
--- a/foo.txt
+++ b/foo.txt
@@ -1,5 +1,4 @@
 # foo.txt
 foo
-
-bar
+baz

如何指示git diff隔离foo.txt新版本的第2行(1索引)?是否可以不跳入脚本语言?

0 个答案:

没有答案