Alexander Solonik
Alexander Solonik

Reputation: 10230

How to get a list of pull request that have been merged into the master?

I was just going through the code on hexo.js a nodejs blogging platform and i wanted to know if there is any way in which i can see all the latest commits to the repo ( I.E. pull request that have been merged into the master repo ).

Ofcourse i can see the latest commit like so:

latest commit

But what if i want to see the last 10 commits that have been merged into the master ? How do i do that ?

Upvotes: 0

Views: 31

Answers (1)

Flater
Flater

Reputation: 13773

Click the 2,658 commits link (top left in your picture).

enter image description here

This takes you to the history, where you can select the branch whose history you can review (master should be the default).

enter image description here

Upvotes: 1

Related Questions