code.google.com:git:fatal:远程错误:找不到存储库

我在code.google.com中创建了一个新的存储库,生成了code.google.com密码并更新了我的〜/ .netrc

machine code.google.com login <email-id> password <password>

根据code.google.com中的说明,我能够使用以下命令克隆存储库:

git clone https://code.google.com/p/<repository-name>/

然后我将一些文件添加到存储库并执行,git add,然后是git commit.但是当我执行git push origin master时,它给出了以下错误

fatal: remote error: Repository not found

谷歌为这个问题,我发现了几个链接,但在那里提到的解决方案似乎不起作用.任何建议都将受到高度赞赏!

更新:
我尝试了以下解决方法,但没有成功:

>更新.git / config中的url以获取用户名和密码
>在git clone命令的url中输入用户名和密码
>使用global git config命令更新用户名和密码

最佳答案 尝试’git remote show origin’来确认远程通信.

是否在Google Project Hosting检查了“安全”按钮.如果是这样,可能是您使用了错误的密码(Google代码密码与Google帐户密码).

[编辑]

克隆Google项目时,您将获得自定义存储库名称.例如,我克隆了’playn’项目,并给出了一个项目名称’gozoner-playn-too'(根据我提供的信息).当您进行本地克隆时,它需要属于此存储库.就我而言:

git clone https://code.google.com/p/gozoner-playn-too

然后推动工作:

$git push origin
Counting objects: 3, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (2/2), 256 bytes, done.
...

请注意,如果您已经检出错误的克隆(我怀疑),您可以使用以下命令将网址更改为正确的网址:

git remote set-url origin https://code.google.com/p/gozoner-playn-too

在此之后.git / config文件具有:

[remote "origin"]
  fetch = +refs/heads/*:refs/remotes/origin/*
  url = https://code.google.com/p/gozoner-playn-too
点赞