我希望能够调用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索引)?是否可以不跳入脚本语言?