0
是否有一種方法可以比較2個不同github倉庫中的2個文件與不同文件夾名稱?比較2個不同github倉庫中的2個文件
github repo 1
a/
1.txt
github repo 2
b/
1.txt
正在研究使用git的差異,但好像這是不可能的
是否有一種方法可以比較2個不同github倉庫中的2個文件與不同文件夾名稱?比較2個不同github倉庫中的2個文件
github repo 1
a/
1.txt
github repo 2
b/
1.txt
正在研究使用git的差異,但好像這是不可能的
嘗試使用Git的diff命令
git diff --no-index repo1/a repo2/b
git diff --no-index [--options] [--] [<path>…]
This form is to compare the given two paths on the filesystem.
You can omit the --no-index option when running the command in a working
tree controlled by Git and at least one of the paths points outside
the working tree, or when running the command outside a working tree
controlled by Git.