Git: How to find when a commit was merged into master?
Asked Answered
J

1

15

I want to create a metric in my project that measures how long does a commit take from its creation till to get into the master branch.

Is it possible? It looks like for fast-forwarded commits I can't get this info from the git log.

If I can get a snapshot of the repository X days ago, maybe I can calculate it. Another option is to get a log that registers when a branch HEAD was modified.

Update: If you create an annotated tag at each release, you can just see the date of the tag that included the commit. Here is how to list the commits included in a tag

Jewelljewelle answered 21/11, 2018 at 18:26 Comment(2)
using git show --pretty=fuller SHA1 you could look at author date and commit date; BTW when using gerrit, a commit-id is added to track commits between branches, could maybe be done the same way in your projectRecycle
See this helps: #10586374 and #42898160Leonardo
D
8

It is not easy, considering the commit itself does not know in which branch it is.
It does not keep track of branch "events" which would mention it was created in branch X, and then merge (possibly fast-forward) in branch Y.

Only git reflog registers HEAD changes, but it is limited in time.

As mentioned by the OP, you need to add a metadata (like an annotated tag, but you could also consider a git notes) in order to memorize the information you need.

Dicta answered 21/11, 2018 at 18:41 Comment(2)
Since there is no permanent register of changing the read of a branch, the really feasible solution is to create an annotated tag, and see the commits in betweenJewelljewelle
@Jewelljewelle I afre, and have included your comment in the answer for more visibility.Dicta

© 2022 - 2024 — McMap. All rights reserved.