在提交A中,过去的某个时间,我有这个目录结构:
foo
bar
a.txt
b.txt
c.txt
baz
d.txt
我现在有:
foo
ba
r
a.txt
b.txt
c.txt
z
d.txt
e.txt
如何在现在和提交foo/ba/r
之间执行A
目录的目录差异?
答案 0 :(得分:0)
只是
git diff -C A -- foo/ba/r/
将检测并跟踪移动。