Created
July 25, 2020 09:07
-
-
Save pat-s/57dab3cfcb821928d1a9e819d06ea60b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (requireNamespace(c("callr", "git2r"), quietly = TRUE)) { | |
has_git = git2r::in_repository() | |
if (has_git) { | |
message("Running `git2r::pull()` in the background.") | |
callr::r_bg(function() {git2r::pull()})$wait()$get_result() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment