git: how to see changes due to push?

后端 未结 2 1586
心在旅途
心在旅途 2021-02-07 07:29

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

2条回答
  •  旧巷少年郎
    2021-02-07 08:20

    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.

提交回复
热议问题