我想将我的私有存储库从GitHub克隆到Google Cloud的虚拟实例中,以便可以在Jupyter Lab中使用它。
我使用了本教程:https://cloud.google.com/cloud-build/docs/access-private-github-repos,结果是我有一个存储桶,其存储库已压缩在tar.gz中。
在我的虚拟实例中使用SSH时,我使用了命令
## Including offset(log(n)) in the right hand side
model.1 <- glm(cases ~ city + age.range + offset(log(n)), family = poisson(link = "log"), data = nonmel)
## And using the offset option
model.1 <- glm(cases ~ city + age.range, offset = log(n), family = poisson(link = "log"), data = nonmel)
显然将回购复制到实例中。问题是,我不知道它在哪里-在Jupyter Lab本地主机中找不到它。
此外,我尝试先将我的存储库克隆到Google Cloud Source Repository中,然后再将其复制到我的实例中,但是我不知道该怎么做。
有什么建议吗?