0

I am not sure if my question is too broad. I am new to using github api. I need to find out all code changes w.r.t repository. How do I acheive this using github API? I went through the API list and couldn't find anything related to this. Should I use some other way apart from the github APIs to solve this problem?

Has QUIT--Anony-Mousse
  • 76,138
  • 12
  • 138
  • 194
Zack
  • 2,078
  • 10
  • 33
  • 58

1 Answers1

-1

The API for this is called ...

git

Serioulsy, git is all about retrieving changes from repositories... what functionality are you looking for that is not part of git itself? (Plus, it will work with other repositories than github, too!)

Has QUIT--Anony-Mousse
  • 76,138
  • 12
  • 138
  • 194