GitHub.jl icon indicating copy to clipboard operation
GitHub.jl copied to clipboard

A Julia package for interfacing with GitHub

Results 23 GitHub.jl issues
Sort by recently updated
recently updated
newest added
trafficstars

> If the ref doesn't exist in the repository, but existing refs start with ref they will be returned as an array. I ``` julia> GitHub.reference("JuliaLang/julia", "heads/v"; handle_error=false) ERROR: MethodError:...

bug

Currently, the definition of `OAuth2` is: (see [src/utils/auth.jl](https://github.com/JuliaWeb/GitHub.jl/blob/master/src/utils/auth.jl)) ```julia struct OAuth2

https://developer.github.com/v3/issues/

As far as I've seen there are no methods for working with Github's search API. It would be useful to be able to perform random searches and get back a...

The GitHub doc [says](https://developer.github.com/v3/?#http-verbs) that they have been careful to use HTTP methods with semantics appropriate to the API operations. HTTP.jl retries most request automatically in the event of network...

help wanted
priority

I was using `GitHub.file()` to download some of the `url` files from `Metadata.jl` and found some did not `base64decode` correctly. Example: `file("JuliaLang/METADATA.jl", "ACME/url")` produces ``` GitHub.Content (all fields are Nullable):...

``` julia> contributors("dlfivefifty", "ApproxFun.jl") HttpError(404,"Not Found","https://developer.github.com/v3") while loading In[42], in expression starting on line 103 in handle_error at /Users/jiahao/.julia/v0.3/GitHub/src/error.jl:36 in get_pages at /Users/jiahao/.julia/v0.3/GitHub/src/utils.jl:78 in get_pages at /Users/jiahao/.julia/v0.3/GitHub/src/utils.jl:77 in contributors at...

The readme docs are ok, but this could really use a readthedocs page

Currently errors are thrown as strings using `error`. This makes handling a bit annoying. It may be that if there is a 404 error, this is considered useful information (i.e....

Hi there, I am currently trying to get the git tree from a specific repository's default branch, but it fails because Commit does not have the `tree` property The tree...