On Mon, Apr 7, 2008 at 2:18 PM, Kai Hendry <hendry@xxxxxxxxxxxxx> wrote: > On Mon, Apr 7, 2008 at 6:41 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > > A set of big questions is how that git.webvm.net/srv/git/webkit-test > > repository was prepared, what its history look like and how it relates to > > the history your repository has. I presume that that is different from > > the repository you are pushing from (which is "x61:aplix/test/WebKit" > > repository), but other than that you did not give any details to guess > > further. > > webkit-test was just a `git --bare init --shared` and completely empty > with I tried pushing (publishing) the changes to WebKit trunk. > > With thanks, Basically every git repository needs to be entirely self-sufficient, that is, it should be possible to check out a copy without referring to any external repositories. So your initial push to an empty repository will always upload all the objects, even if you pulled from some other. The good news is that if your friends who checked out of the main repository want to try out your branch, it *won't* accidentally download all the extra objects over again. git will notice that they already have the same objects (retrieved from the main repo) and download only the new ones. So yes, some space is "wasted" on your extra repo, but disk space is cheap anyway (and you now have a backup of the main repo for free :)) Have fun, Avery -- 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