我正在尝试使用 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 文件到云源存储库。