Thursday, July 2, 2009

Re: Which branch should I work on?

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 git@thechaw.com: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 <gwoo.cake...@gmail.com> 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 cake-php@googlegroups.com
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

No comments: