If you want to download all of the source for a release, here is a simple procedure using just a shell and darwinbuild (using 9G55 as an example):
mkdir 9G55 && cd 9G55
sudo -s
darwinbuild -init 9G55
for X in $(darwinxref version '*' | cut -d '-' -f 1); do darwinbuild -fetch $X; done
mkdir AllSource
for X in Sources/*; do tar zxvf $X -C AllSource/; done