Git push对Google Code repo没有任何作用

Ond*_*žka 3 git google-code push

我在Google Code上有一个git项目. https://code.google.com/p/jawabot/

我做了一些提交master分支.它们很好,可见git log.现在,当我这样做时git push,我得到"

$ git push
Password: 
Everything up-to-date
Run Code Online (Sandbox Code Playgroud)

而有时:

$ git push
Password: 
error: The requested URL returned error: 403 while accessing    https://dynawest@code.google.com/p/jawabot//info/refs

fatal: HTTP request failed
Run Code Online (Sandbox Code Playgroud)

更新:

$ git remote -v
origin  https://dynawest@code.google.com/p/jawabot/ (fetch)
origin  https://dynawest@code.google.com/p/jawabot/ (push)
Run Code Online (Sandbox Code Playgroud)

怎么了?我还是谷歌?(我是新手.)

如果有人如此善良,并试图在那里推送一些东西,我会很高兴(我想我能够恢复这种变化).

更新:

根据答案,我试过(git:// url猜测):

$ git remote add gc git@code.google.com:jawabot/jawabot.git
$ git remote -v
gc      git@code.google.com:jawabot/jawabot.git (fetch)
gc      git@code.google.com:jawabot/jawabot.git (push)
origin  https://dynawest@code.google.com/p/jawabot/ (fetch)
origin  https://dynawest@code.google.com/p/jawabot/ (push)
ondra@ondra-doma:/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
Run Code Online (Sandbox Code Playgroud)

Ani*_*hag 6

你的步骤将是.你忘记了吗?

git add <files>
git commit -m 'message'
git push origin master 
Run Code Online (Sandbox Code Playgroud)


man*_*lds 6

您将尝试执行的操作在常见问题解答中得到解答:http://code.google.com/p/support/wiki/GitFAQ

这两个为什么只是一个git push不起作用,也https只支持而不是其他协议.

为什么Git拒绝推,说"一切都是最新的"?

没有其他参数的git push只推送已存在于远程中的分支.如果远程存储库为空,则不会推送任何内容.在这种情况下,明确指定要推送的分支,例如git push master.

我可以通过git://或ssh://而不是https://访问我的存储库吗?

为了利用Google生产服务器的高级可扩展性和负载平衡功能,我们只能接受传入的HTTP连接.我们没有计划支持除v1.6.6中引入的Git Smart HTTP协议之外的协议.

我们通过HTTPS支持匿名(只读)和身份验证(读/写)访问.