layout | title | navbar |
---|---|---|
default |
SoC 2014 Applicant Microprojects |
false |
It is strongly recommended that students who want to apply to the Git project for the Summer of Code 2014 submit a small code-related patch to the Git project as part of their application. Think of these microprojects as the "Hello, world" of getting involved with the Git project; the coding aspect of the change can be almost trivial, but to make the change the student has to become familiar with many of the practical aspects of working on the Git project.
NOTE: Students who plan to work on libgit2, which is also under the Git umbrella in the Google Summer of Code, should refer to the libgit2 list of projects rather than the list below.
Consider a sample email thread, which shows how a developer proposed a change and a patch to implement it. The problem being solved, the design of the proposed solution, and the implementation of that design were all reviewed and discussed, and after several iterations an improved version of the patch was accepted into our codebase. As a GSoC student, you will be playing the role of the developer and engaging in a similar discussion. Get familiar with the flow, need for clarity on both sides (i.e. you need to clearly defend your design, and need to ask clarifications when questions/suggestions you are offered are not clear enough), the pace at which the discussion takes place, and the general tone of the discussion, to learn what is expected of you.
To complete a microproject, you will have to go through approximately the following steps:
-
Download the source code: clone the repository using the Git via Git instructions and read the
README
file. -
Build the source code: this is described in the file
INSTALL
. -
Glance over our coding guidelines in the file
Documentation/CodingGuidelines
. We take things like proper code formatting very seriously. -
Read about the process for submitting patches to Git: this is described in
Documentation/SubmittingPatches
. -
Make the actual change. (Funny, this is the only part they teach you about in college.)
-
Run the test suite and make sure it passes 100%: this is described in the file
t/README
. (If you have added new functionality, you should also add new tests, but most microprojects will not add new functionality.) -
Commit your change. Surprise: we use Git for that, so you will need to gain at least a basic familiarity with using Git. Make sure to write a good commit message that explains the reason for the change and any ramifications. Remember to make sure that you agree with our "Developer's Certificate of Origin" (whose text is contained in
Documentation/SubmittingPatches
), and to signify your agreement by adding aSigned-off-by
line. -
Submit your change to the Git mailing list. For this step you probably want to use the commands
git format-patch
andgit send-email
. Make sure that your email is formatted correctly: send a test version of the email to yourself and see if you can apply it to your repository usinggit am
. -
Expect feedback, criticism, suggestions, etc. from the mailing list.
Respond to it! and follow up with improved versions of your change. Even for a trivial patch you shouldn't be surprised if it takes two or more iterations before your patch is accepted. This is the best part of participating in the Git community; it is your chance to get personalized instruction from very experienced peers!
The coding part of the microproject should be very small (say, 10-30 minutes). We don't require that your patch be accepted into master by the time of your formal application; we mostly want to see that you have a basic level of competence and especially the ability to interact with the other Git developers.
When you submit your patch, please mention that you plan to apply for the GSoC. This will ensure that we take special care not to overlook your application among the large pile of others.
Students: Please attempt only ONE microproject. We want quality, not quantity! (Also, it takes work to collect the ideas, and it would be nice to have enough microprojects for everybody.) If you've already done a microproject and are itching to do more, then get involved in other ways, like finding and fixing other problems in the code, or improving the documentation or code comments, or helping to review other people's patches on the mailing list, or answering questions on the mailing list or in IRC, or writing new tests, etc., etc. In short, start doing things that other Git developers do!
The following are just ideas. Any small code-related change would be suitable. Just remember to keep the change small! It is much better for you to finish a small but complete change than to try something too ambitious and not get it done.
-
Rewritetakengit-compat-util.h:skip_prefix()
as a loop, so that it doesn't have to scan through theprefix
string twice. -
Changetakenbranch.c:install_branch_config()
to useskip_prefix()
. -
Intakenbranch.c:setup_tracking()
, figure out where the magic number1024 - 7 - 7 - 1
comes from. (Looking through the commit history might help.) If the check involving the number is still necessary, document where the number comes from. If the check is no longer necessary, explain why and delete the check. -
Rewritetakenbulk-checkin.c:finish_bulk_checkin()
to use astrbuf
for handlingpackname
, and explain why this is useful. Also check if the first argument ofpack-write.c:finish_tmp_packfile()
can be made const. -
Changetakenbundle.c:add_to_ref_list()
to usehashcpy()
. See if you can find other places wherehashcpy()
should be used instead ofmemcpy()
. -
Changetakenbundle.c:add_to_ref_list()
to useALLOC_GROW()
. See if you can find other places that would benefit from a similar change. -
Write a functiontaken (and it turns out that the mailing list didn't like this idea)strbuf_write_or_die()
and use it instead ofwrite_or_die(fd, buf.buf, buf.len)
in all of the places you can find. -
Intakenbranch.c:install_branch_config()
, can the long chain ofif
statements be simplified? Would it make sense to make the code table-driven? Don't forget that the strangely-named function_()
is used for internationalization and limits the possibility of gluing strings together. -
Couldtakencommit.c:commit_graft_pos()
use one of the general-purpose bisection functions likesha1_pos()
orsha1_entry_pos()
? Are there other places that could do so? -
Rewritetakencommit.c:record_author_date()
to useskip_prefix()
. Are there other places in this file whereskip_prefix()
would be more readable thanstarts_with()
? -
Find places where we scan a string twice unnecessarily, once withtakenstrchr()
and then withstrlen()
, and rewrite these sites usingstrchrnul()
when appropriate. -
Currently in order to disallow theNot recommended. This is more a milliproject than a microproject, and the mailing list wasn't so enthusiastic about the idea anyway.--[no]-xxx
form of a command-line option, we have to initialize the option's fullstruct option
explicitly. It'd be nice to have a set ofOPT_*
macros withPARSE_OPT_NONEG
set. Find and update allstruct option []
declarations with the new macros (including ones that should never accept--no-xxx
form, but do anyway). -
Rewritesolveddiff-no-index.c:read_directory()
to useis_dot_or_dotdot()
. Try to find other sites that can use that function. -
Change
fetch-pack.c:filter_refs()
to usestarts_with()
instead ofmemcmp()
. Try to find other sites that could be rewritten similarly. -
Rewrite
fsck.c:fsck_commit()
to usestarts_with()
and/orskip_prefix()
. -
Rewritetakenbuiltin/add.c:run_add_interactive()
to usestruct argv_array
. -
Find one or more bugs, inefficiencies, or unconventional code patterns in
builtin/apply.c:fuzzy_matchlines()
and fix them. (There are enough microprojects in this function for several students.) -
"VAR=VAL command" is sufficient to run 'command' with environment variable VAR set to value VAL without affecting the environment of the shell itself. But the same does not work with a shell function (most notably, "test_must_fail"). So, in our test suite, we implement subshell invocations in multiple lines like this:... && ( VAR=VAL && export VAR && test_must_fail git command ) && ...
But that could be expressed as
... && test_must_fail env VAR=VAL git command && ...
Find and shorten such constructs in existing test scripts.solved