Используйте R для продвижения локального репо на github в Windows.

Я однажды спросил оченьаналогичный вопрос и получил ответ, который работал из командной строки, но теперь я хочу использовать R для автоматизации процесса из Windows (Linux намного проще).

Вот что я пытаюсь сделать:

Создать локальный каталог (или он уже существует)Создайте новый репозиторий github в облаке с тем же именем, что и локальный (основываясь на этом ответе)Добавить .git в локальный репозиторийСделать первоначальный коммитУстановить связь между облачным репо и локальным репоНажмите коммит и файлы в локальном репо на github

я верюна основании результатов что я прошел весь шаг 5 до того, как потерпел неудачу (так как коммит и файлы из локального каталога никогда не попадали на github в облаке). Я знаю, что шаг 2 работает, потому что создан пустой репоВот, Я не знаю, как проверить шаг 5. На последнем шагеshell(cmd6, intern = T) RGui и RStudio приводят к вечной смертельной спирали. Вопрос в том:Как я могу подтолкнуть коммит и локальное репо в облако.

Вот мой обновленный код (единственное, что зависит от пользователя, это имя пользователя и пароль в третьем фрагменте кода):

## Create Directory
repo <- "foo5"
dir.create(repo)
project.dir <- file.path(getwd(), repo) 

## Throw a READ.ME in the directory
cat("This is a test", file=file.path(project.dir, "READ.ME"))

## Github info (this will change per user)
password <-"pass" 
github.user <- "trinker"  

## Get git location
test <- c(file.exists("C:/Program Files (x86)/Git/bin/git.exe"),
    file.exists("C:/Program Files/Git/bin/git.exe"))
gitpath <- c("C:/Program Files (x86)/Git/bin/git.exe",
  "C:/Program Files/Git/bin/git.exe")[test][1]

## download curl and set up github api
wincurl <- "http://curl.askapache.com/download/curl-7.32.0-win64-ssl-sspi.zip"
url <- wincurl
tmp <- tempfile( fileext = ".zip" )
download.file(url,tmp)
unzip(tmp, exdir = tempdir())       
shell(paste0(tempdir(), "/curl http://curl.haxx.se/ca/cacert.pem -o " , 
    tempdir() , "/curl-ca-bundle.crt"))
json <- paste0(" { \"name\":\"" , repo , "\" } ") #string we desire formatting
json <- shQuote(json , type = "cmd" )
cmd1 <- paste0( tempdir() ,"/curl -i -u \"" , github.user , ":" , password , 
    "\" https://api.github.com/user/repos -d " , json )

shell(cmd1, intern = T)

## Change working directory
wd <- getwd()
setwd(project.dir)

## set up the .git directory
cmd2 <- paste0(shQuote(gitpath), " init")
shell(cmd2, intern = T)

## add all the contents of the directory for tracking
cmd3 <- paste0(shQuote(gitpath), " add .")  
shell(cmd3, intern = T)       

cmdStat <- paste0(shQuote(gitpath), " status")  
shell(cmdStat, intern = T)

## Set email (may not be needed)
Trim <- function (x) gsub("^\\s+|\\s+$", "", x) #remove trailing/leading white 

x <- file.path(path.expand("~"), ".gitconfig")
if (file.exists(x)) {
    y <- readLines(x)
    email <- Trim(unlist(strsplit(y[grepl("email = ", y)], "email ="))[2])
} else {
    z <- file.path(Sys.getenv("HOME"), ".gitconfig")
    if (file.exists(z)) {
        email <- Trim(unlist(strsplit(y[grepl("email = ", y)], "email ="))[2])
    } else {
        warning(paste("Set `email` in", x))
    }
}
cmdEM <- paste0(shQuote(gitpath), sprintf(" config --global user.email %s", email))        
system(cmdEM, intern = T)

## Initial commit
cmd4 <- paste0(shQuote(gitpath), ' commit -m "Initial commit"')  
system(cmd4, intern = T) 

## establish connection between local and remote
cmd5 <- paste0(shQuote(gitpath), " remote add origin https://github.com/",
    github.user, "/", repo, ".git")  
shell(cmd5, intern = T) 

## push local to remote 
cmd6 <- paste0(shQuote(gitpath), " push -u origin master")  
shell(cmd6, intern = T) 

setwd(wd)

Я знаю, что скрипт немного длиннее, но все это необходимо для воссоздания проблемы и ее повторения:

Запись Я обновил вопрос в свете ответа Саймона, поскольку он был прав и приблизился к толчку. Содержание оригинального вопроса можно найтиВот.

Ответы на вопрос(2)

Ваш ответ на вопрос