Home > Mobile >  See when a merge happened
See when a merge happened

Time:08-06

With this command

git branch --merged

I can see all the merges. For example

develop
  feature/az***_STAGING
  feature/az***_POC
  feature/az***_ricerche
  feature/az***_gp
  feature/patch_puntamento
  hotfix/az***_recupero
  prova_da_rinominare

But how can I see when branch was merged? For example

  feature/az***_STAGING     01/01/2022
  feature/az***_POC         15/03/2022

CodePudding user response:

I think this answer https://stackoverflow.com/a/1441062/7559642 combined with --merges should do what you want: git log --pretty=format:"%h%x09%an%x09

  • Related