rugged icon indicating copy to clipboard operation
rugged copied to clipboard

ruby bindings to libgit2

Results 128 rugged issues
Sort by recently updated
recently updated
newest added

`Rugged::SubmoduleCollection#clone_submodule` assumes that [**every** repository has `master` branch](https://github.com/libgit2/rugged/blob/c5ed931dfc34fc1c8990d86c565492f610014c00/lib/rugged/submodule_collection.rb#L47). It is usually true but not generally correct. For instance [xcode-test-engine for arc](https://github.com/google/arc-xcode-test-engine) has only `stable` and `develop`, last one is default....

I haven't seen any clear documentation on the sort mode options, i.e. `Rugged::SORT_{NONE,TOPO,...}`. Could this please be mentioned somewhere, perhaps in the Walker class docs?

i found a good library for git branches graph , lets see ---> http://gitgraphjs.com/ i clone a repository with rugged but i cant get all branches and all commit like...

The following script walks over a local clone of https://github.com/ruby-gnome2/ruby-gnome2 and for the commits done at or after the day 2016-11-06, it displays the number of diff. ```ruby require "rugged"...

The CHANGELOG hasn't been updated since July 2015, over a year ago. There have been stable releases since then. An outdated CHANGELOG makes it more difficult for users to decide...

``` ruby require 'rugged' def credentials lambda do |_, _, _| return nil end end Rugged::Repository.clone_at 'https://github.com/example/my-project.git', 'my-project' , { credentials: credentials } ``` Calling `clone_at` with a credentials callback...

I'm getting `The SSL certificate is invalid (Rugged::SslError)` error when trying to fetch from a git server with self-signed certificate. Is there any way to ignore the SSL certificate? Setting...

I noticed that nothing in `Rugged::Blob` makes any attempt to convert blob text to the filtered output via `.gitattributes` (e.g. CRLF output). In libgit2, I see [calls to `git_blob_filtered_content()`](https://github.com/libgit2/libgit2/blob/77394a27af283b366fa8bb444d29670131bfa104/tests/filter/blob.c#L33), but...

`rugged_exception_raise` seems to raise the wrong exception after a specific series of method calls. 1. `Repository#lookup` 2. `Repository#read_header` 3. `Commit#header_field` (with args that will cause an exception) The final call...

Please forgive me if I'm wrong, but I can't find support for http://www.kernel.org/pub/software/scm/git/docs/git-clean.html in rugged right now.

libgit2