0

我正在尝试使用 cloud sdk 将代码从本地窗口推送到云源存储库,我关注的链接是

https://cloud.google.com/source-repositories/docs/authentication

当在我的云 sdk 中运行第一个命令时

gcloud init && git config --global credential.https://source.developers.google.com.helper gcloud.cmd

它运行没有任何问题,但它没有在我的本地文件夹中生成 .git 文件夹,当我运行第二个命令时

git remote add google https://source.developers.google.com/p/la-gcp-test/r/demo-repo

我收到了这个错误

fatal: not a git repository (or any of the parent directories): .git

我要做的就是使用 cloud sdk 从我的本地 windows 机器上传一个简单的 index.html 文件到云源存储库。

4

1 回答 1

1

正如您所怀疑的那样,您失踪了git init,这一定是在您之前发生git remote add的。

如果您在遇到之前还没有初始化本地存储库git remote add,那么就git init在您之前git remote add

我很惊讶谷歌文档没有包含它。

于 2021-10-28T01:06:35.590 回答