Search code examples
gitmergebranchtrunk

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.


Solution

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

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