How do I get the commit date and the merge date when looking at the commit history of a file in Github?

StackOverflow https://stackoverflow.com/questions/23530902

  •  17-07-2023
  •  | 
  •  

i.e. on this page

Do the dates refer to when the commit was made? or when it was merged in? And how can I find out the other?

Thank you,

edit: Ideally I don't have to clone the repo down and use the git CLI.

edit2: It looks like the dates in that link are the dates from when the commit was made. So how does one find out when the commit was merged into the branch using Github's GUI?

有帮助吗?

解决方案

If you look at an history involving merges (like the one for the git repo itself), you would see:

  • the merge commit
  • followed by the two parent commits (which have been merged)

So in case of a merge, you would still be able to see "when the commit was merged into the branch"

merge on GitHub

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top