ERROR : fatal: not a git repository (or any of the parent directories): .git cloud source repository
ERROR : fatal: not a git repository (or any of the parent directories): .git cloud source repository
我正在尝试使用 cloud sdk 将代码从本地 windows 推送到云源存储库,我关注的 link 是
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
我只想使用云 sdk 将一个简单的 index.html 文件从我的本地 windows 机器上传到云源存储库。
如您所料,您错过了 git init
,这一定是在您 git remote add
.
之前发生的
如果您在遇到 git remote add
之前没有初始化本地存储库,那么在 git remote add
之前只需 git init
我很惊讶 Google 文档没有包含它。
我正在尝试使用 cloud sdk 将代码从本地 windows 推送到云源存储库,我关注的 link 是
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
我只想使用云 sdk 将一个简单的 index.html 文件从我的本地 windows 机器上传到云源存储库。
如您所料,您错过了 git init
,这一定是在您 git remote add
.
如果您在遇到 git remote add
之前没有初始化本地存储库,那么在 git remote add
git init
我很惊讶 Google 文档没有包含它。