I can\'t quite figure out how to see what exactly was changed, in the remote repository, by a \'push\'. \'git log\' shows me the series of commits but those took place in my lo
Git doesn't keep track of which commits were part of which "push" operation; either the repository contains a certain sequence of commits, or it doesn't. It doesn't matter to Git how the commits got there, whether a group of three commits was part of one push, or each one was done in a separate push.