How can we get the difference between two git repositories?
The scenario: We have a repo_a and repo_b. The latter was created as a copy of repo_a. There have been pa
Once you have both branches in one repository you can do a git diff. And getting them in one repository is as easy as
git diff
git fetch /the/other/repo/.git refs/heads/*:refs/remotes/other/*