On Sat, Apr 04, 2009 at 02:17:33AM +0800, Changsheng Jiang wrote: > Just 'git init' in server, then 'git push server' after 'git remote > add server ...' in laptop gives error. It's hard to say without seeing the error message, but I'm assuming it was along the lines of "No refs in common". By default, "git push server" will push matching branches (i.e., ones that both the client and the server have in common). To push a new branch, you say "git push server $BRANCH", or even just "git push --all server". -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