I have another question. When I checkout to master branch, everything is ok. but when I check out to 1.3 branch the code will be broken with some php errors. I tested 1.3-misc branch too and it is broken some where else in the code.
To be more precise, it's what I did: $ git clone [email protected]:forks/farhadi/cakephp.git // I launched cake in the browser. everything is ok. $ git checkout -b 1.3 origin/1.3 // I couldn't launch it any more. (Failed opening required 'cake/libs/ session.php') $ git checkout -b 1.3-misc origin/1.3-misc // Another error in the browser (Cannot redeclare class Set in ...) $ git checkout master // Switch back to master branch and everything is ok again. Am I doing something wrong? By the way, I'm new to git. On Jul 1, 10:31 pm, Gwoo <[email protected]> wrote: > master is most recent stable version. (1.2.3.8166) > 1.2 is the current working branch for master > 1.3 is the new development branch > 1.3-* are dev branches, and are not considered stable until merged > into 1.3 > > Create a branch off of 1.3 in your fork and start coding. > > Patches with test cases take priority. Writing good tests are still > the best way to start contributing. > Message me in #cakephp on irc.freenode.net if you have any questions. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
