0

I want to download multiple repositories from GitHub using Python libraries. I found gitpython, but I don't know how to write a program which continuously forks repositories. Any suggestions how can I do it.

Mia
  • 39
  • 1
  • 7

1 Answers1

0

You don't need to fork ("fork a repo") in order to clone or pull from a repo you want to monitor.

You need either a webhook (if you have access to the repo) in order to be alerted of any new commit.
Or you need a CI tool (for instance, Jenkins) to regularely to a pull, and trigger a job if any new commit has changed.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250