Last updated on 2026-05-20 14:48:50 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 2.3.1 | 8.95 | 40.77 | 49.72 | OK | |
| r-devel-linux-x86_64-debian-gcc | 2.3.1 | 8.32 | 30.80 | 39.12 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 2.3.1 | 12.00 | 66.10 | 78.10 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 2.3.1 | 13.00 | 71.74 | 84.74 | OK | |
| r-devel-windows-x86_64 | 2.3.1 | 26.00 | 134.00 | 160.00 | OK | |
| r-patched-linux-x86_64 | 2.3.1 | 8.76 | 39.22 | 47.98 | OK | |
| r-release-linux-x86_64 | 2.3.1 | 10.26 | 39.21 | 49.47 | OK | |
| r-release-macos-arm64 | 2.3.1 | 3.00 | 20.00 | 23.00 | OK | |
| r-release-macos-x86_64 | 2.3.1 | 9.00 | 62.00 | 71.00 | OK | |
| r-release-windows-x86_64 | 2.3.1 | 26.00 | 141.00 | 167.00 | OK | |
| r-oldrel-macos-arm64 | 2.3.1 | 3.00 | 19.00 | 22.00 | OK | |
| r-oldrel-macos-x86_64 | 2.3.1 | 9.00 | 65.00 | 74.00 | OK | |
| r-oldrel-windows-x86_64 | 2.3.1 | 30.00 | 162.00 | 192.00 | OK |
Version: 2.3.1
Check: examples
Result: ERROR
Running examples in ‘gert-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: git_fetch
> ### Title: Push and pull
> ### Aliases: git_fetch git_remote_ls git_push git_clone git_pull
>
> ### ** Examples
>
> {# Clone a small repository
+ git_dir <- file.path(tempdir(), 'antiword')
+ git_clone('https://github.com/ropensci/antiword', git_dir)
+
+ # Change into the repo directory
+ olddir <- getwd()
+ setwd(git_dir)
+
+ # Show some stuff
+ git_log()
+ git_branch_list()
+ git_remote_list()
+
+ # Add a file
+ write.csv(iris, 'iris.csv')
+ git_add('iris.csv')
+
+ # Commit the change
+ jerry <- git_signature("Jerry", "jerry@hotmail.com")
+ git_commit('added the iris file', author = jerry)
+
+ # Now in the log:
+ git_log()
+
+ # Cleanup
+ setwd(olddir)
+ unlink(git_dir, recursive = TRUE)
+ }
Error in libgit2::git_clone : SSL error: unknown error
Calls: git_clone -> raise_libgit2_error
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc