Hi all, Since we changed our Git policy[1] it is necessary that you switch your GitHub forks from fabpot/symfony to symfony/symfony. Since this feels a little scary, I want to give you advice on how to do this.
Wording: "your fork" = your Symfony2 clone on GitHub, e.g. http://github.com/symfony/bschussek "local clone" = the clone of your fork on your own computer 1) Check whether your fork has any open pull requests. If yes, notify the authors of the PRs to reopen them on symfony/symfony. Wait until they did before proceeding. 2) Check whether your fork has any branches or tags that you don't have in your local clone and that you still need. If so, fetch them and copy them to your local clone. git fetch origin git checkout -b branch_name origin/branch_name 2) Delete your GitHub fork by clicking "Admin" -> "Delete this repository". Your local clone will obviously not be affected. 3) Go to https://github.com/symfony/symfony and click "Fork". Make sure that the fork you create has the same URL as the one you deleted. 4) Synchronize your local clone with the new fork. Push up any eventual branches you have copied before. git fetch origin git push origin branch_name That's it. You can now work with the new fork. Bernhard [1] http://groups.google.com/group/symfony-devs/browse_thread/thread/1bfb1738ed953724 -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony developers" 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/symfony-devs?hl=en
