SSEMember
SSEMember

Reputation: 2173

how can I figure out when a branch in git was merged into the trunk

I'm trying to figure out the revision in the trunk when a branch was merged in, but I'm not sure how. Thanks for the help.

Upvotes: 1

Views: 62

Answers (2)

Adam Dymitruk
Adam Dymitruk

Reputation: 129526

git log --all --decorate --one-line --graph

will allow you to see the history without leaving the command line.

Upvotes: 1

Paritosh Singh
Paritosh Singh

Reputation: 6384

You can see network diagram on github.com for your repository. It will show flow diagram for all branches and whether or when they were merged with proper revision number.

Upvotes: 1

Related Questions