git2r
git2r copied to clipboard
R bindings to the libgit2 library
@stewid I added some tests (currently failing) related to Issue #389. I didn't update the documentation or messaging because ideally this situation can be properly handled by returning the appropriate...
GitHub has a new feature where it will reject a `git push` signed with the user's email if they have enabled the setting [Block command line pushes that expose my...
I am using `git2r::content()` to read-in several versions of a text file from a repo. However, the file has embedded nulls that stop the input stream from being read-in fully....
It seems that is not possible to create tag without message ```r > git2r::tag(name = version) Error in git2r::tag(name = version) : is.character(message) is not TRUE > git2r::tag(name = "v0.1.0",...
I'd like to tag the output of my R programs with the SHA of the current git HEAD. I know I can obtain this with `revparse_single`, but I would also...
I'd like to be able to remove untracked files from a repository, i.e. to run `git clean -f`. It is of course trivial to use a workaround such as the...
In general, I use SSH these days, but I just returned to an old project still set up with HTTPS. I took this chance to exercise git2r's https functionality a...
Splitting this off of #353 Better search for default SSH keys on Windows and re-locating a comment I originally made there. I beat my head against this [getting SSH keys...
Similar to #341, Getting this ERROR "unknown certificate failure" on Windows on @cran https://www.r-project.org/nosvn/R.check/r-release-windows-ix86+x86_64/spm12r-00check.html. Confirmed in WinBuilder: [00check.log](https://github.com/ropensci/git2r/files/2719964/00check.log). I've only seen this problem come up in Windows side as rest...
:wave: here! Things no longer work for me, ``` r library("git2r") repo_path Use 'repository_head' instead. #> See help("Deprecated") #> [6ac507] (Local) (HEAD) master git2r::remote_add(r, "origin", "[email protected]:maelle/git2rtests") git2r::push(r, "origin", "refs/heads/master") #>...