git2r icon indicating copy to clipboard operation
git2r copied to clipboard

R bindings to the libgit2 library

Results 94 git2r issues
Sort by recently updated
recently updated
newest added

Hi! I was wondering if there is some way, given two commits A and B (sha or tag), to list all commits between them, similar to the A..B and A...B...

Hello, I started getting this error recently: Error in 'git2r_remote_ls': too many redirects or authentication replays Can anyone give me more information onto what it could be caused, everything work...

``` > install.packages("git2r") Installing package into ‘/Users/xxx/Library/R/3.2/library’ (as ‘lib’ is unspecified) trying URL 'http://mirrors.tuna.tsinghua.edu.cn/CRAN/src/contrib/git2r_0.15.0.tar.gz' Content type 'application/octet-stream' length 1084978 bytes (1.0 MB) ================================================== downloaded 1.0 MB * installing *source* package...

## Short description: Under R 4.1.3, I can push to github with SSH transport using `git2r::push()` Under R 4.2.0 on the same computer, `git2r::push()` fails with ``` Error in git2r::push(".",...

Hi, I have set an SSH key pair (without passphrase) in RStudio and am getting this error when I try to push changes using `git2r` to GitHub: ```` Error in...

Would you accept a PR which adds a function that brings a local repo inline with the remote? It checks all local branches and does the following: 1. remove local...

Hello, I was wondering if you could help me solve a an issue with no TLS stream. Everything was working fine yesterday, and I'm not sure if some configuration caused...

## Motivation A common setup I use for my Git repositories is to ignore entire directories which contain many files that I do not want to commit, e.g. subdirectories with...

Also tested with {gert}. Maybe an issue of ligbit2? Using git directly works. ``` r library(git2r) library(withr) with_dir("~/git/mlr-org/mlr3gallery/", { status() git2r::add(".", "docs/CNAME", force = TRUE) # file should have been...

The gert package has a nice function called `git_stat_files()`. For each file passed to it, it returns the most recent commit, modification time, and more. Would it be possible to...