Say we have the following branches:
aaa --> bbb --> ccc --> ddd (HEAD) Branch A eee --> fff --> ggg Branch B Would it be possible to compare bbb (on Branch A) with eee (on Branch B)?
The following compares the tip of the branches (afaik):
git diff A..B While the following compares commits on the same branch:
git diff ddd..ccc Would it be possible to merge these parameters?
git show bandgit show e(it's not really what you're looking for though)git diff bbb eee?git diff bbb eeeworks.