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
git diff master remotes/b
That's incorrect. remotes/b is a remote, but not a branch.
remotes/b
To get it to work, I had to do:
git diff master remotes/b/master