Kevin Sheedy wrote: > Basically, I want every developer to be able to push their code to the whole > team. What does this mean, in practice? Do you want (1) the code in their working directories to change under their feet, (2) the code you've written to be immediately available to them in case they pull out the network cable, or something else? If case (2), then git currently provides support for fetching from multiple repositories at once: $ git fetch --multiple alice bob sam but does not include such support for pushing. One can do so explicitly like so: $ for repo in alice blob sam do git push $repo *:refs/remotes/kevin/* done Regards, Jonathan -- 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