2

A github repository can have commits by many users.

How can I find all commits made by a user in a github repository in browser?

Let's say when i say https://github.com/navyad/messengerbot in browser, it shows page of that repo.

How same url can be used to figure out the commits of a user?

Community
  • 1
  • 1
navyad
  • 3,752
  • 7
  • 47
  • 88

1 Answers1

6

If following is the repo url:

https://github.com/xyz/repo/

and you want all commits from master of user nayad

then

https://github.com/xyz/repo/commits/master?author=navyad
navyad
  • 3,752
  • 7
  • 47
  • 88