I love the git branch --no-merged
command for finding branches that have changes that are not merged into the current branch.
Is it possible to do that without having a local copy of the repository?
With subversion, you could do this:
svn mergeinfo source target --show-revs eligible
That would show the unmerged changes that were in source
but not target
. If those were full urls, you didn't have to have the repo checked out.
I want to see the unmerged changes between two branches without cloning the repository locally. Is that possible with git?