这似乎是一个非常初学的问题;但是,我不知道最新版蛋糕1.3的链接是什么。我有git和svn使用eclipse。我认为蛋糕现在使用的是git而不是SVN(也许我错了)。如果是使用git,有人可以给我一些指示吗?
答案 0 :(得分:6)
你是对的,CakePHP已经转移到Git和Github:
git clone git://github.com/cakephp/cakephp1x.git
将“结帐”最新提交。
git pull
然后将存储库“更新”为HEAD修订版。
编辑:我刚才意识到CakePHP有一个单独的1.3开发分支。你必须:
git branch --track 1.3 origin/1.3
git checkout 1.3
这将切换到1.3分支。
答案 1 :(得分:1)
Brian McKenna的上述回应有效,但截至2012年4月4日,他列出的第一个命令不起作用。我试图让HOURS弄明白......问题是在URL中包含了“1x”:
git clone git://github.com/cakephp/cakephp1x.git targetdir
运行此命令将导致
git clone git://github.com/cakephp/cakephp1x.git targetdir
Cloning into targetdir...
fatal: The remote end hung up unexpectedly
相反,我能够成功检出初始副本,然后按照步骤2和3开始拉1.3版本:
git clone git://github.com/cakephp/cakephp.git targetdir
我希望正在遵循上述解决方案的其他人发现这一点并且不会像我一样陷入困境。