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

Hello! I'm struggling a bit. How can I get the changes implemented in the first commit of a repo? By my understanding, the expected way to get the changes associated...

I am trying to use `git2r` to extract individual files from repository history for the purpose of comparing R objects through the repository history (for instance, for comparing model performance...

Introduced with fdc6fd82 ## Error messages > undefined reference to `__imp___acrt_iob_func' C:/rtools40/mingw64/bin/gcc -shared -s -static-libgcc -o git2r.dll git2r-win.def git2r.o git2r_S3.o git2r_arg.o git2r_blame.o git2r_blob.o git2r_branch.o git2r_checkout.o git2r_clone.o git2r_commit.o git2r_config.o git2r_cred.o git2r_diff.o...

I am trying to clone a private repo in R using Rstudio with git2r and I am getting the following error: ``` >git2r::clone(url = repo, local_path = dir_name, progress =...

Hi, I come across this observation that if I have a local branch, even though I have pushed it to remote on github using git command line, the branch_get_upstream() still...

I have encountered a weird behaviour of the diff method. I define two blobs with tree(commits(repo, path "mypath")[[190]]) roughly the same pattern and then want to compare the differences. Though,...

In R studio I have tried to install the package "git2r" via install.packages("git2r") but the compilation failed. I have installed libgit2 in my conda environment as I thought this could...

There is a function to retrieve commits with `git2r::commits()` - it would be nice to have also function to get all info on remote repository (not only path): https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#get-a-repository

I'm raising this issue off the back of this [Stack Overflow question](https://stackoverflow.com/questions/76464491/r-library-git2r-overwrites-function-from-base), and I've included the reproducible example used in that question. See the offending line of code [here](https://github.com/ropensci/git2r/blob/master/R/merge.R#L106) `merge()`...

Hi I was working with a student this morning to track down an error in calling `git2r::commits(repo)`, and the issue turned out to be that she had not yet made...