我正在尝试编写一个函数来将项目推送到 github,而无需先在云中创建项目。目前,您可以使用此问题中的信息从 RStudio 中的 git 命令行执行此操作。
现在我正在尝试将它包装成一个函数,我可以使用该函数system
从本地存储库在云中创建存储库。我正在 Windows 和 linux 机器上解决这个问题(所以还不确定它在 mac 上的效果如何)。到目前为止,这是我的代码(检测 git 位置):
gitpath <- NULL
repo <- "New"
user <- "CantPostThat"
password <- "blargcats"
if (Sys.info()["sysname"] != "Windows") {
gitpath <- "git"
} else {
if (is.null(gitpath)){
test <- c(file.exists("C:\\Program Files (x86)\\Git\\bin\\git.exe"),
file.exists("C:\\Program Files\\Git\\bin\\git.exe"))
if (sum(test) == 0) {
stop("Git not found. Supply path to 'gitpath'")
}
gitpath <- c("\"C:\\Program Files (x86)\\Git\\bin\\git\"",
"\"C:\\Program Files\\Git\\bin\\git\"")[test][1]
}
}
然后我尝试使用system
:
system(paste(gitpath, "--version"))
> system(paste(gitpath, "--version"))
git version 1.7.11.msysgit.1
看起来不错。但后来我在一个真正的代码块上尝试它:
cmd1 <- paste(gitpath, paste0("curl -u '", user, ":", password,
"' https://api.github.com/user/repos -d '{\"name\":\"", repo, "\"}'"))
system(cmd1)
并得到消息:
> system(cmd1)
git: 'curl' is not a git command. See 'git --help'.
Did you mean this?
pull
Warning message:
running command '"C:\Program Files (x86)\Git\bin\git" curl -u ' trinker : PASSWORD ' https://api.github.com/user/repos -d '{"name":" three "}'' had status 1
如何运行此命令:
curl -u 'USER:PASS' https://api.github.com/user/repos -d '{"name":"REPO"}'
从控制台。
我还尝试在不先将 git 放在前面的情况下运行。我目前在win 7机器上