我正在尝试使用云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
所有我想做的是上传一个简单的index.html文件从我的本地windows机器到使用云sdk的云源存储库。
正如您所怀疑的那样,您丢失了git init
,这一定是在您可以获取git remote add
之前发生的。
如果你在遇到git remote add
之前没有初始化本地回购,那么在git remote add
之前先初始化git init
我很惊讶Google文档没有包含它。