Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to contribute to a certain project in GitHub. So, should I fork it? Branch it? How? How to do it?

share|improve this question

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.

6 Answers

up vote 24 down vote accepted

Ideally you:

  1. Fork the project
  2. Make one or more well commented and clean commits to the repository. You can make a new branch here if you are modifying more than one part or feature.
  3. Perform a pull request in github's web interface.

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.

share|improve this answer
1  
+1. s/merge request/pull request/? – zoul Dec 8 '10 at 6:43
3  
Details on GitHub's forking, and pull requests – Gabriel Grant Dec 8 '10 at 6:44
Yes, pull request. Merge request is gitorious terminology. – Yann Ramin Dec 8 '10 at 6:47

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:

  • add the original project as a remote (different form 'origin', since origin would be your own repo, result of the fork)
  • rebase your branch on top of the branch of the original repo you want to contribute.
    It is important your pulling request result in fast-forward merges.
share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

lornajane has a blog post that explains the process well: http://www.lornajane.net/posts/2010/contributing-to-projects-on-github

share|improve this answer

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?

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.