Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View entire activities of an user in github [closed]

Tags:

git

github

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 ...
  • ...
like image 220
Abhi Avatar asked Feb 03 '12 11:02

Abhi


People also ask

How do I get summary from GitHub?

On GitHub.com, navigate to the main page of the repository. Under your repository name, click Insights.

Does GitHub show who viewed your profile?

You have no way to see who has checked out your repository using standard git commands such as git clone , but you can see who has forked your repository on GitHub using the Network Graph Visualizer.


1 Answers

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.

  • syntax: GET /users/:user/events
  • example: https://api.github.com/users/mojombo/events

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

  • https://github.com/mojombo.atom

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

like image 106
nulltoken Avatar answered Sep 19 '22 21:09

nulltoken