grunwaldlab / quiltr

R package for making website representations of directories
http://grunwaldlab.github.io/quiltr/
5 stars 1 forks source link

Utilize git2r for functions such as make_gh_website() #64

Open zkamvar opened 8 years ago

zkamvar commented 8 years ago

The current make_gh_website() uses a bunch of system commands, assuming that git is properly installed and talks with GitHub. While it works with our machines, trying to do this on any other machine, YMMV. I propose a refactor of this function to utilize git2r, which ships the git source code and makes it available in R without requiring a git install for the user.

I've made an example of using git2r for github flow here: http://popgen.nescent.org/CONTRIBUTING_WITH_GIT2R.html that can get you started as to what functionalities it has.