Linked Questions

0 votes
1 answer
113 views

I am making an api call to the github api to get the names of folders in a repository. I do not know how to extract the data from the api call and where to go from here. Any help would be appriciated! ...
Python12492's user avatar
1 vote
0 answers
63 views

Is there any way to list all GitHub repository's folders and their contents without downloading or cloning it to my local using java API like egit or any API?
Manjunath's user avatar
13 votes
4 answers
15k views

Is this a native git concept? I've been researching this for a while and cannot seem to understand? All I get is Github documentation, and just that master is the initial default branch. If possible, ...
rubixibuc's user avatar
  • 7,484
12 votes
2 answers
8k views

I am wondering if there exists a function or a link or any method that would work like list.files() function in R but on a folder stored on a github repostiory. example github repository folder: ...
Marcin's user avatar
  • 8,084
9 votes
4 answers
2k views

There is a Git repository on GitHub called platform_frameworks_base containing part of the Android source code. I wrote an application that replies on all the .aidl files from that project, so it ...
Forivin's user avatar
  • 15.8k
1 vote
1 answer
7k views

I want to get all files (and sub-directories and the files in them) from a github repo. I do not want to use the git package as that requires me to have git installed (on windows, so that's not an ...
azazelspeaks's user avatar
  • 6,145
3 votes
1 answer
4k views

Is there a gh command to list files in a directory without having a working copy clone? I have found a git command that will do it, but I think this is working only on the local working copy. git ls-...
lit's user avatar
  • 16.5k
0 votes
1 answer
2k views

I am trying to pull some csv files from a public repository using Python. I have the code to process the data after I have the files' URL. Is there some sort of equivalent to ls for GitHub? I'm not ...
user1543042's user avatar
  • 3,432
1 vote
1 answer
2k views

i want to get a list of files from my git repo in JSON format. Have you got any ideas how to do this?
Pavlo Chebotiuk's user avatar
0 votes
1 answer
1k views

Is there any way to get the total number of files & the total number of lines of code from *github.Repository. There is a Go package that helps explore git in Go code. The Repository class in ...
Hemant Bhargava's user avatar
1 vote
1 answer
364 views

I am trying to list the files present on an enterprise GitHub repository. I tried using GitHub API but base URL for it is api.github.com where as base URL would be different for me and when I put that ...
aayan rade's user avatar
0 votes
1 answer
396 views

With the following command, I'm able to get download_url for the files on my GitHub repo, but it doesn't include files that are inside folders: curl -H "Authorization: token ghp_..." -H &...
Jabu's user avatar
  • 182