I try to contribute to a certain project in GitHub. So, should I fork it? Branch it? How? How to do it?
closed as not constructive by DaveRandom, Jim G., darkajax, msmucker0527, Shikiryu Apr 15 at 14:48
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Ideally you:
Some projects won't use the pull request system. Check with the author or mailing list on the best way to get your code back into the project. |
|||||||||||
|
|
To add to Yann's answer, once you have forked a project, you can develop in any branch you want (a new one, or one from the original project) Remember to:
|
|||
|
|
|
To add to Yan and VonC's answers, this is a good resource from github themselves: http://help.github.com/forking/ Also be sure to look on the right sidebar under the "collaborating" heading. |
|||
|
|
|
There is a great Railscast video here that walks you through the process. It also has a number of good tips such as showing how to determine which branch you might want to work on when contributing, using tests, submodules, etc. While this screencast is primarily focused on Rails developers most of the information is valid for contributing to any open source project. |
|||
|
|
|
lornajane has a blog post that explains the process well: http://www.lornajane.net/posts/2010/contributing-to-projects-on-github |
|||
|
|
|
The process used at GitHub and Bitbucket is called Integrator Workflow (or Integration Manager Workflow if you want to sound even more enterprisey). While this is hard to grasp for the first look if you come from the Centralized VCS world, the idea is actually quite simple. We use the same approach internally in our company, and we made a short tutorial video for our own team members who have been using Subversion for many years and had been similary confused with the new notions of forking, pulling and sacred repo... It may worth a watch: What is the Integrator Workflow? |
|||
|
|