1
vote
1answer
18 views

See what happend to files in Github trees API

Through the github API i'm listing all the files and folders of a certain commit, like so: https://api.github.com/repos/:owner/:repo/git/trees/:sha?recursive=1 That gives me a list like this: { ...
0
votes
1answer
23 views

Github autologin through web

I have a private git repo for a test project, and I want some people to test it out. But getting them to submit comments/errors they have is hard since they are not really computer users who want to ...
0
votes
1answer
21 views

github api Name of the user is different in Search info results and User complete info results, how can i get correct name

I am using github_api gem in my rails application. NOTE: check the name of the user, in first result name is "koti" , in second result "Koteswara Rao". My question is how can i get Original user ...
0
votes
1answer
28 views

Github - remove issues entered in error

Dozens of issues have been entered into my project on github that have no place there. Some Einstein ran a script and created all these nonsensical issues through the api. Nothing is linked to these ...
0
votes
1answer
28 views

Get git commits by branch name\id with git api

I am working on automated service to work with Git hub repositories. And I am having problem on my side - I can't find a way to get all commit in particular branch by its hash\name. My code is an ...
1
vote
2answers
32 views

Persistent Authentication even when logged off?

I'm trying to write a web application that works like this: The user sends an email to the email address of my application My application posts the body of the email as a public gist of the user. ...
0
votes
2answers
37 views

Writing a curl Post call in Ruby

If i issue a POST request using curl command to github api to add "Resolved" label; things are good. curl -i -H "Authorization: token xxxxxxxxxxxx" -X POST ...
0
votes
1answer
20 views

Can I set a hook using API on public repo owned by someone else?

Is it possible to register an event hook on a public repository not owned by me using the github API? In other words, is there a way to listen to repo updates without asking the owner to add a hook ...
2
votes
2answers
38 views

github api does not return my post-receive web hook

I have manually added a web hook to my repository, but when I query the repository using the API I get { "message": "Not Found" } what is wrong? the url: ...
1
vote
2answers
31 views

on github, Is there a way to find the connection between issues and pullrequest, between issues and commits,etc

On the github website, a lot of issues are connected(referenced) with pull request or commits. Is there a way we can find the connection in the github archive database or in the github API?
0
votes
1answer
63 views

Github API V3 Search Repo issues

I'm trying to get 3 repos with highest numbers of stars in given language. I have 3 issues with it: search is using legacy pagination style and per_page does not seem to work language parameter is ...
1
vote
1answer
35 views

Get list of comments from GitHub pull request

According to http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request I should be able to get a list of comments by issuing the following curl statement, however, it is ...
0
votes
1answer
23 views

Create GitHub.com Hook

I am attempting to create a hook using the create hook api found on http://developer.github.com/v3/repos/hooks/#create-a-hook but I am getting a 301 when I attempt to post, so I am sure I am doing ...
0
votes
1answer
33 views

Github returns “Problems parsing JSON” when trying to create repo using curl

I'm attempting to create a repo on github using curl. No matter how I attempt to format my JSON it always returns "Problems parsing JSON". Is there something I'm missing? Here is my statement: curl ...
0
votes
2answers
87 views

How to get curl “Authorization token(OAuth token)” programmatically (using JS/PHP ) for github user?

I am working with Github now.How can i suppose to get the "OAuth token" for github login user.Now i have the Data like client_id,Client Secret,access_toke(these all data getting after login to github ...
0
votes
0answers
30 views

github repo counts by language (and historical data)?

I'm interested in getting a count of github repos for a certain set of languages (with historical data if possible.) Here are things I've tried to start collecting the stats myself: Screen scraping ...
2
votes
1answer
106 views

On GitHub API - what is the best way to get the last commit message associated with each file?

So far as I understand it, messages are associated with commits. But when you look at a repo on GitHub it helpfully lists the message by each file, for when it was last changed. I'd like to replicate ...
1
vote
1answer
41 views

github api: How to efficiently find the number of commits?

I want to find the number of commits done to specific github projects, and within them to specific files. I checked the github api docs but only found an API for actually returning all commits. This ...
1
vote
2answers
98 views

github api: How to upload files,create folder into repo using api

Hi i m using GitHub v3 and i want to add new binery file in repo .by using KnpLabs php-github-api i m exectly doing what says in get the current commit object retrieve the tree it points to ...
0
votes
1answer
51 views

Is it possible to get commits history for one file in github api?

I would like to get all commit messages for separate file in github REST api. But all I got - only to get all commits for separate branch. Then I tried to get following: ...
4
votes
2answers
139 views

Most “popular” Python repos on GitHub

Based on the v3 documentation I would have thought that this: $ curl https://api.github.com/legacy/repos/search/python?language=Python&sort=forks&order=desc would return the top 100 Python ...
0
votes
1answer
34 views

How can I list all Github users with V3 APIs?

I can get just the first 100 users : lsoave@ubuntu:~$ curl -i https://api.github.com/users|grep -c login % Total % Received % Xferd Average Speed Time Time Time Current ...
1
vote
2answers
55 views

Maven install to checkout and build

I have a maven project which depends on another remote project on git . I added a <scm> <connection>scm:git:git@github.com:MY-Group/my.project.git</connection> ...
0
votes
1answer
107 views

Creating a GitHub hook for when a pull requested is opened

I'm trying to setup a GitHub hook which sends a POST to a url when a pull request is opened. This post should contain all the relevant details of the pull request, however I have added a url to the ...
2
votes
0answers
64 views

Github API lists deleted gists

When using the Github API with Gists, it lists gists that do not exist anymore: require 'github_api' github = Github.new do |config| config.oauth_token = 'mytoken' end gists = github.gists.list ...
1
vote
1answer
50 views

GitHub Ruby API - Update pull request description

I'm using the following github ruby api: https://github.com/peter-murach/github I'm trying to update a pull requests' description but the documentation doesn't seem to give any idea as to how to do ...
1
vote
1answer
18 views

Is there a way to get the number of repositories per language using Github's API?

I would like to use the Github API to retrieve the number of repositories for each language. For example, C++ 200,134 Java 175,432 C# 123,453 ...
2
votes
1answer
46 views

Github API: how to find the branches of a pull request?

The Github API (v3) allows you to get a listing of pull requests, and get more details on an individual pull request. What I can't seem to find is the name of the branch the pull request is coming ...
2
votes
1answer
152 views

How to use ssh authentication with github API?

Is there some way to use ssh-based authentication when accessing the GitHub API through the command line (via, e.g., curl, etc.?). FWIW, I tried many variations of the following (varying the way I ...
0
votes
0answers
25 views

Programatically check github diff with Stylecop SDK

I am trying to create an utility that will get automated code review for code on github using stylecop rules. Right now the stylecop SDK works only with the entire file - so to make review for the ...
3
votes
1answer
69 views

Caching Github API calls

I have a general question related to caching of API calls, in this instance calls to the Github API. Let's say I have a page in my app that shows the filenames of a repo, and the content of the ...
1
vote
1answer
49 views

How can I grab the latest “stable” repo version from the Github API?

Github's tag method returns a list of all tags pushed to your repo with the latest tag listed at the top. Here's an example call: https://api.github.com/repos/ff0000/rosy/tags which produces the ...
2
votes
2answers
114 views

GitHub API: Fetch all folders and Files in Single GET Request

In the GitHub API, I can issue a GET request of https://api.github.com/repos/owner/repo/git/trees/master?recursive=1 to recursively fetch all of the trees of a repository. In addition to giving me ...
0
votes
1answer
47 views

Can I query the Github API for my repository quota?

I'm working on an app that creates private Github repositories (among other things). Every once in a while, we are over quota with our private repos. I'd like to know how many repositories we have ...
1
vote
1answer
207 views

Github API and Access-Control-Allow-Origin

this probably is a simple (series of) question(s) but I can't wrap my head around it. I'm trying to access the github api from a web app hosted on my site. This is the code in a nutshell: ...
1
vote
1answer
85 views

GitHub API update file

I'm trying to update a file via the GitHub API. I've got everything setup, and in the end the actual file is updated, which is a good thing. However, let's say I've got these 2 files in my repo ...
1
vote
1answer
113 views

List of Repos (Public and Private) for an Organization on Github

I am trying to get a list of all repos associated with an organization using the github api gem in my rails application. I use omniauth to authenticate a user and then I am able to access a list of ...
0
votes
1answer
233 views

How to use basic authentication to create oAuth2 token for github api?

I am working on an iPhone app in which I am using github api. To access github I am using Oauth with web application flow. Means First It opens login screen then I give username & password. But ...
1
vote
0answers
125 views

Read Raw Contents of File in Private Repo on Github via access_token

I am trying to retrieve the raw contents of the README.rm file of a private repository on Github. I'm extremely close, the only issue currently, is that I'm getting back a 401 unauthorized result. ...
0
votes
1answer
87 views

Github API Post Not Found 404

For some reason, when I try to post githubs api to create a repository, I keep getting a 404 not found. Here's my code, has anyone else experienced this? url = "https://api.github.com/users/repo" ...
2
votes
1answer
211 views

GitHub v3 API: Get full commit list for large comparison

I'm trying to use the GitHub v3 API to get the full list of commits between two SHAs, using the comparison API (/repos/:owner/:repo/compare/:base...:head), but it only returns the first 250 commits ...
1
vote
1answer
109 views

GitHub API with PHP's cURL not getting right status response

I am using WordPress's HTTP API which has a wrapper for cURL (I'll assume it can do everything PHP's cURL does). Trying to check the following headers If-None-Match and If-Modified-Since via the API ...
16
votes
6answers
759 views

Github API List all repositories and repo's content

If I was to go about displaying just MY github repositories and their contents on an external website how would i go about doing this? Are there any source code's you can provide me with, if not ...
2
votes
0answers
39 views

GitHub API commit file raw_url 404

I'm using the GitHub API and I'm getting a 404 on the raw_url for a commit file entry that actually refers to a "subproject". For example the libgit2 entry at the bottom of this commit has the ...
0
votes
0answers
22 views

How do I know the original file name for a renamed file from GitHub's post-receive hook?

Here is the situation: I have a file in my repo, say something/foo.md. I rename it with git, so that it is now something/bar.md. I commit and then push I get the post-receive payload from GitHub ...
-2
votes
1answer
38 views

GitHub notification about organisation events on specific URL? [closed]

Is there any way to get notifications about GitHub organisation events on some URL instead of checking notificactions with cron?
0
votes
2answers
118 views

github api - fetch all commits of all repos of an organisation based on date

Assembla provides a simple way to fetch all commits of an organisation using api.assembla.com/v1/activity.json and it takes to and from parameters allowing to get commits of selected date(from all ...
1
vote
2answers
241 views

how to create oauth2 token for github enterprise under organization?

I'm trying to create an oauth2 token for an organization. This seems to be impossible (or at least I'm not finding it). This will be used for various one of scripts (non-web use). This is also for an ...
1
vote
1answer
166 views

How to store OAuth token for Github in a Python script?

I am working on a Python script that access Github using basic authentication. I want to use OAuth so that user doesn't have to enter credentials every time he uses the script. Most importantly, ...
2
votes
1answer
80 views

Github API - Get Branch of Tag

I am currently writing a system to automatically archive stable releases of a piece of sofwtare that we maintain. The source is maintained in GitHub, and I am using the v3 API to pull out each tag, ...

1 2 3