On 17 July 2010 11:47, Florian Klämpfl wrote: >> Well, you should really try using modern VCS ;-) > > Well, I did, till the lazarus mercurial mirror repository broke. > Yesterday, I tried to clone Graeme's git repository because I needed > quickly fpc trunk: cloning aborted with some error message always at the
Works here! I used a new Ubuntu 10.04 install on my laptop. $ git --version git version 1.7.0.4 -------------------------------------------------------- $ git clone git://github.com/graemeg/freepascal.git fpc_github Initialized empty Git repository in /opt/git/fpc_github/.git/ remote: Counting objects: 139200, done. remote: Compressing objects: 100% (31664/31664), done. remote: Total 139200 (delta 107465), reused 138515 (delta 106960) Receiving objects: 100% (139200/139200), 65.48 MiB | 265 KiB/s, done. Resolving deltas: 100% (107465/107465), done. Checking out files: 100% (11821/11821), done. -------------------------------------------------------- Above was the full history (including branches: trunk, cpstrnew, fixes) resulting in a 65MB download using the git protocol to access the repository. If you don't need the full history, add the parameter: --depth 5 This will result in a history of only the last 5 commits of each branch & tag, and result in a much smaller download. -- Regards, - Graeme - _______________________________________________ fpGUI - a cross-platform Free Pascal GUI toolkit http://opensoft.homeip.net/fpgui/ _______________________________________________ fpc-devel maillist - [email protected] http://lists.freepascal.org/mailman/listinfo/fpc-devel
