Re: VCS comparison table
From: Jeff King <hidden>
Date: 2016-06-15 22:42:44
On Tue, Oct 17, 2006 at 06:23:41AM -0400, Sean wrote:
The "bzr missing" command sounds like a handy one. Someone on the xorg mailing list was recently lamenting that git does not have an easy way to compare a local branch to a remote one. While this turns out to not be a big problem in git, it might be nice to have such a command.
What's wrong with: git-fetch gitk master...origin The git model is to do operations on local refs and objects, so the fetch is a natural part of that. The only downside I see is that you actually end up fetching the data rather than simply peeking at where the remote is. But a useful comparison will include at least grabbing the commit objects, and probably the tree objects (to do diffs) anyway. -Peff