-2

Before I start let me tell you that I have read all the other questions regarding how to join an open source project.

This question is about how to write a bug fix for a problem that the user faces in open source code or project.

My primary questions are-:

  1. In order to write a bug fix do you have to understand the whole code base of the open source project or do you have to just understand the module that you are working on ?
  2. What is the process of requesting code to work on for writing a bug fix ? I mean is it expected that you need the entire repo for the fix or just download a portion of it ?
Kramer786
  • 1,034
  • 1
  • 9
  • 22

1 Answers1

0
  1. No, you can focus on the specific part of hte code base which makes the project not working like you would like it to (this is called "scratch your own itch")

  2. You should clone the full repo (this is how a decentralized VCS is supposed to work).
    For a GitHub repo, fork it first, in order to have the right to push back to that fork, and make a pull request from said fork)

Community
  • 1
  • 1
VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283