Create one student's repository and push starter files
Source:R/create_student_repo.R
create_student_repo.RdCreates a fresh private repository in the organization, pushes every file in a local folder into it through the contents API, and adds the student as a collaborator. If the repository already exists it is left alone and the function reports that, so the call is safe to repeat.
Value
A one row data frame with student, repo, and status. Status is one of "ok", "exists", "create_error", or "setup_error".
Examples
if (FALSE) { # \dontrun{
set_org("ISTA421INFO521")
create_student_repo("octocat", "hw1_files", prefix = "hw1")
} # }