2011-08-07 13 views
3

私は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 
+0

私はなぜ誰もが-1を置くのだろうかと思っています。 –

答えて

6

はFAQに答えている:http://code.google.com/p/support/wiki/GitFAQ

理由だけgit pushもオン動作しませんどちらもhttpsのみをサポートし、他のプロトコルはサポートしません。

なぜ、Gitは「最新のものをすべて」と言ってプッシュするのを拒否しますか?

追加の引数を指定しないでgit pushを実行すると、リモートにすでに存在するブランチ がプッシュされます。リモートリポジトリが空の場合は、 は何もプッシュされません。この場合、明示的にブランチを プッシュに指定します。 git push master。

https://ではなく、 git://またはssh://で自分のリポジトリにアクセスできますか?

は、高度なスケーラビリティとGoogleの本番サーバーの ロード・バランシング機能を利用するために、我々は唯一の 着信HTTP接続を受け入れることができます。 v1.6.6で導入されたGit Smart HTTPプロトコル以外のプロトコルは、 プロトコルをサポートする予定はありません。

私たちはHTTPS経由で匿名(読み取り専用)と認証済みの (読み取り/書き込み)アクセスをサポートしています。

6

の手順は次のようになります。 //git.foo:あなたは1

git add <files> 
git commit -m 'message' 
git push origin master 
+0

いいえ、私が言ったように、コミットは 'git log'です。 –

+1

最後に私はステップ3の一部を忘れていたことが判明しました:) –

+0

初めてのこと - 誰もがうんざりする:) –

0

を忘れてしまいましたことは潜在的にあなたがやってみたいかもしれないものの代わりにgitのようにgitプロトコルを使用して、HTTPSアドレスを使用してのです。解決

1

- 何をしようとすることは、ブランチ仕様がありませんでした...

$ git push origin master 
Password: 
Counting objects: 3724, done. 
Delta compression using up to 2 threads. 
Compressing objects: 100% (2762/2762), done. 
Writing objects: 100% (3724/3724), 1.21 MiB | 136 KiB/s, done. 
Total 3724 (delta 1669), reused 0 (delta 0) 
remote: Scanning pack: 100% (3724/3724), done. 
remote: Storing objects: 100% (3724/3724), done. 
remote: Processing commits: 100% (196/196), done. 
To https://[email protected]/p/jawabot/ 
* [new branch]  master -> master 
[email protected]:/mnt/ssd1/_projekty/JawaBot-2.0-git$ 
関連する問題