On 2007/11/28, Ismail DAnmez <[EMAIL PROTECTED]> wrote: > > $ svn -q co svn://gcc.gnu.org/svn/gcc/trunk gcc > > $ du -s . > > 1044451 . > > $ > > > > It's 1'069'517'824 characters made from keyboards and generators!!! > > > > That massive!!! And slower checkout after several minutes!!! > > > > Is not there any another solution to reduce this massive quantity > > for the most recent part of the trunk of the tree instead of full trunk? > > git clone --depth 100 git://git.infradead.org/gcc.git > > should give around ~50mb repository with usable trunk. This is all thanks to > Bernardo Innocenti for setting up an up-to-date gcc git repo.
In the menu [ "Live" Sources ] from http://gcc.gnu.org/ , besides SVN, it should appear this GIT (speeder help for speeder developers) too. git clone --depth 100 git://git.infradead.org/gcc.git or in the future git clone --depth 100 git://gcc.gnu.org/gcc.git for faster checkout and development. J.C.Pizarro