0

Possible Duplicate:
fatal: remote error: Could not find Repository octocat/myapp

https://code.google.com/p/prjname/ is a empty repo right now

i can clone it, but cannot push local repo to it, why?

[mirror@home php]$ git clone https://code.google.com/p/prjname/
Cloning into 'prjname'...
warning: You appear to have cloned an empty repository.
[mirror@home php]$ rm prjname/ -rf

git init

Reinitialized existing Git repository in /home/mirror/tmp/php/.git/

[mirror@home php]$ git remote -v
[mirror@home php]$ git remote add origin https://code.google.com/p/prjname/
[mirror@home php]$ git push origin
fatal: remote error: Repository not found
[mirror@home php]$ git push -u origin
fatal: remote error: Repository not found
[mirror@home php]$ https://code.google.com/p/prjname/

[mirror@home php]$ ls
conf.inc.php  demo  docs  lang  lib  logs  prjname  sdk.class.php  services  util

failed to push, but this repo exists, though it is empty...

[mirror@home php]$ git push origin
fatal: remote error: Repository not found 
Community
  • 1
  • 1
thinke365
  • 1,305
  • 3
  • 14
  • 22
  • Have you seen it? http://stackoverflow.com/questions/10202015/code-google-com-git-fatal-remote-error-repository-not-found – kan Sep 06 '12 at 07:45
  • @kan this problem is a bit similar with http://stackoverflow.com/questions/10202015/code-google-com-git-fatal-remote-error-repository-not-found, but mine is with more details, and that question is still unsolved... – thinke365 Sep 06 '12 at 07:53

1 Answers1

0

try this:

cd prjname
git push origin
Greg Motyl
  • 2,478
  • 17
  • 31