I was looking for equivalents in git for
Subversion's svn revert <file> and for
Mercurial's hg outgoing. It looks like they are
git checkout <file> and git log origin..
(including the two trailing dots).
Comments
Ted Percival wrote:
Sometimes (always?) you have to specify the remote branch, as well as the remote, eg. "git log origin/master..". I have the feeling this was changed recently.
Comments