我想知道如何从9.3.1-STABLE和TN-9.3.1-STABLE中获得git diff,具有以下文件夹/ git结构

root@build3:/tank/home/stable-builds/FN # git branch
  9.3-STABLE
* 9.3.1-STABLE

root@build3:/tank/home/stable-builds/TN # git branch
TN-9.3-STABLE
* TN-9.3.1-STABLE
master


任何答案将不胜感激。

最佳答案

首先,我们使两个git repos彼此了解

转到一个存储库

cd /tank/home/stable-builds/FN


将其他仓库添加为“远程”

git remote add TN /tank/home/stable-builds/TN


提取其他仓库

git fetch TN


现在,我们要求区别

git diff 9.3.1-STABLE remotes/TN/TN-9.3.1-STABLE

08-27 06:34