On Tue, Dec 16, 2008 at 03:22:17PM +0800, Emily Ren wrote: > I can clone a remote repo with git protocol, but I can't push my > branch to origin repo with git protocol. If I use ssh protocol, I can > push sccuessfully. I'm confused, can someone give me a guide on this? > Can I use git protocol to push my branch to remote repo? If yes, how > can I do ? Thank you for your help in advance ! Yes, git-daemon does not support pushing by default, since it doesn't do any authentication of the pushing users. The recommended practice is to push over ssh, which uses the exact same protocol, but is tunneled over ssh, so the user is authenticated and the incoming data has an integrity check (note that pulling by ssh is also the same protocol as pulling via git://, except of course that it is also tunneled over ssh; this means that if you are pushing and pulling, you can just set your remote to talk to the ssh version). If you _really_ want totally anonymous, unsecured pushing to your repo (e.g., because you are on a restricted LAN and everybody is trusted), you can enable the receive-pack service. See the git-daemon documentation for details. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html