Linked Questions
12 questions linked to/from Get all file names from a Github repo through the Github API
0
votes
1
answer
113
views
Swift Parse Json Data [duplicate]
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!
...
1
vote
0
answers
63
views
How to list folders and their contents of a GitHub repository using java? [duplicate]
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?
13
votes
4
answers
15k
views
What exactly is the default git branch
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, ...
12
votes
2
answers
8k
views
How to get list files from a github repository folder using R
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: ...
9
votes
4
answers
2k
views
Clone/download specific files from a GitHub repository
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 ...
1
vote
1
answer
7k
views
Python-Requests: Get all files from a git folder
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 ...
3
votes
1
answer
4k
views
List files in repo using `gh` from GitHub CLI?
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-...
0
votes
1
answer
2k
views
Python get list of csv files in public GitHub repository
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 ...
1
vote
1
answer
2k
views
How to get json list of files in git repository?
i want to get a list of files from my git repo in JSON format. Have you got any ideas how to do this?
0
votes
1
answer
1k
views
Number of files/lines of code from *github.Repository
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 ...
1
vote
1
answer
364
views
How to list files from enterprise GitHub repository without cloning
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 ...
0
votes
1
answer
396
views
How to get the download link of all files in a repo?
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 &...