私はGoogle Codeでgitプロジェクトを持っています。 https://code.google.com/p/jawabot/Git pushはGoogle Code Repoで何もしません。
私はmaster
ブランチにコミットしました。彼らはgit log
に表示されています。私はgit push
を行う際 は今、私は
$ git push
Password:
Everything up-to-date
そして、時には "を取得:
$ git push
Password:
error: The requested URL returned error: 403 while accessing https://[email protected]/p/jawabot//info/refs
fatal: HTTP request failed
更新:??何が悪い
$ git remote -v
origin https://[email protected]/p/jawabot/ (fetch)
origin https://[email protected]/p/jawabot/ (push)
Meまたはグーグル(私はgitのよ初心者。
私はとても親切で、そこに何かを押し込もうとしましたが、私はうれしく思います(私はそのような変化を元に戻すことができると思います)。
アップデート:(:// URL推測Gitは):
回答に基づいて、私が試したあなたのための
$ git remote add gc [email protected]:jawabot/jawabot.git
$ git remote -v
gc [email protected]:jawabot/jawabot.git (fetch)
gc [email protected]:jawabot/jawabot.git (push)
origin https://[email protected]/p/jawabot/ (fetch)
origin https://[email protected]/p/jawabot/ (push)
[email protected]:/mnt/ssd1/_projekty/JawaBot-2.0-git$ git push gc
ssh: connect to host code.google.com port 22: Connection timed out
fatal: The remote end hung up unexpectedly
私はなぜ誰もが-1を置くのだろうかと思っています。 –