38

How can I view the entire activities of an user in github.com .

Say Mr.Geos entire activites

  • Mr.Geo pushed to ..
  • Mr.Geo deleted ...
  • ...
Abhi
  • 6,471
  • 6
  • 40
  • 57
  • 1
    If you tried doing that through the API, this might be programming related. – pmr Feb 03 '12 at 11:39
  • 2
    @Abhi - Just to to https://github.com/username/ and look on the right side. Everything related to user's public repositories will be there ... – Rook Feb 03 '12 at 11:46
  • @vpatil This is not a duplicate. This is related to online activities on the GitHub website and goes beyond the commit log of a sole repository. – nulltoken Feb 03 '12 at 12:59
  • @vpatil: not a dupe, this question relates to all github activity, the question you linked relates to a git repository activity – CharlesB Feb 03 '12 at 13:00
  • 1
    You can use Github-events-viewer for your own user: https://rawgit.com/zbycz/github-events-viewer/master/github-event-viewer.html – zbycz Apr 05 '16 at 06:23
  • As far as I'm concerned zbycz's comment is an answer and the best one (most everything else (if not all of it) points to useless _computer-friendly_, not _user-friendly_--output. – Alex Hall Nov 08 '18 at 00:27

1 Answers1

51

You can leverage the GitHub Events API to perform such task and retrieve a JSON formatted response.

The Events API is a read-only interface to all the event types that power the various activity streams on GitHub.

An alternative way is to subscribe to the public RSS feed of a user. For instance, Mojombo's public feed Url would be

Also If you want to view Full activities performed by all contributors ,you can also go to

If Private https://github.com/orgs/YOURORGANISATION/dashboard

If Public https://github.com/REPOSITORYOWNER?tab=activity

AnV
  • 2,794
  • 3
  • 32
  • 43
nulltoken
  • 64,429
  • 20
  • 138
  • 130
  • 1
    These only seem to provide the same truncated list as https://github.com/motumbo?tab=activity – Sparr Feb 09 '15 at 05:42
  • 7
    Tack on `?page=2` etc. – u01jmg3 Feb 20 '15 at 14:30
  • 4
    @u01jmg3, your comment should be the answer `?tab=activity&page=2`, too bad it's closed! – Jon49 Jun 17 '15 at 16:48
  • 1
    I just searched back a few pages and it doesn't seem to store all history. Mine only went back a few months - though I assume it's relative to number of items as opposed to amount of time. – aaaaaa Sep 03 '15 at 14:24
  • 2
    A potential alternative would be to query https://www.githubarchive.org/ data which stores all public github events from 2011-12-02 – nulltoken Sep 03 '15 at 14:58
  • Only owner of the org can see this report: https://github.com/orgs/YOURORGANISATION/dashboard. As a site admin, I just added myself as an owner of this org, but see nothing for this org. Guess it's only display since I become an owner? Is there a way to list everything since Jan 2016? – Jirong Hu Jul 26 '16 at 18:21
  • 1
    @nulltoken I think https://githubcontributions.io/user/mr-geo/events/1 is quite nice, too – dtk Aug 23 '16 at 16:50
  • 5
    Unfortunately, the `?tab=activity` is gone since a few days, it there a replacement? I used this link every day, and now I cannot find my own comments on github any more. Is there another page for the activity now? (apart from the .atom feed)? – rubo77 Sep 22 '16 at 22:09
  • 1
    @rubo77 this appears due to the new GitHub design. You'll need to use the atom link – dude Oct 29 '16 at 06:26
  • The site https://opensourcecontributo.rs/user//events/1 works fine but is not up-to-date, the last few minutes are not on the list. If that's enough for you it is the best option. but if you want to see the latest activity, you need the atom feed: https://github.com/.atom which shows everything in firefox (for chrome, you need an [extension](https://chrome.google.com/webstore/detail/rss-feed-reader/)) – rubo77 Aug 06 '17 at 10:09
  • This is subject to the constraints mentioned however (last 300 events or last 90 days, whichever is less) – information_interchange Jan 08 '18 at 18:05
  • Is it possible to view user's (my) thumbs_ups, hearts and other comment like-actions? – Qwerty Oct 11 '18 at 16:28
  • @Qwerty That would make a perfect SO question of its own! :) – nulltoken Oct 11 '18 at 20:50
  • Thank you very much for the /dashboards link. – Jay Aug 11 '22 at 14:20