Home > Software design >  Do all GitHub repositories follow the same URL structure?
Do all GitHub repositories follow the same URL structure?

Time:10-09

Do all GitHub repositories have a URL path of the form https://github.com/<OWNER>/<REPO>?

CodePudding user response:

To answer your question, yes. But only if you are talking about navigating on github's website. Using github's api is a slightly different story and url.

When you need to pull down a particular file using github api, you have to use the github RAW urls. Heres another post that gives more context StackOverflow post

  • Related