Hi Junio & Ananya, Ananya, I think you did a really good job at contributing your first patch, demonstrated by the useful comments you already received. On Tue, 9 Oct 2018, Junio C Hamano wrote: > Derrick Stolee <stolee@xxxxxxxxx> writes: > > > On 10/8/2018 1:05 PM, Ananya Krishna Maram wrote: > >> Hi All, > > Hello, Ananya! Welcome. > > > >> I was searching through #leftovers and found this. > >> https://public-inbox.org/git/CABPp-BGVVXcbZX44er6TO-PUsfEN_6GNYJ1U5cuoN9deaA48OQ@xxxxxxxxxxxxxx/ > >> > >> This patch address the task discussed in the above link. > > The discussion above seems to not be intended for your commit message, > > but it does show up when I run `git am` and provide your email as > > input. The typical way to avoid this is to place all commentary below > > the "---" > > that signifies the commit message is over. > > >> From: Ananya Krishan Maram <ananyakittu1997@xxxxxxxxx> > >> > >> skip the #include of git-compat-util.h since all .c files include it. > >> > >> Signed-off-by: Ananya Krishna Maram <ananyakittu1997@xxxxxxxxx> > >> --- > >> advice.h | 1 - > >> commit-graph.h | 1 - > >> hash.h | 1 - > >> pkt-line.h | 1 - > >> t/helper/test-tool.h | 1 - > >> 5 files changed, 5 deletions(-) > >> > >> diff --git a/advice.h b/advice.h > >> index ab24df0fd..09148baa6 100644 > >> --- a/advice.h > >> +++ b/advice.h > >> @@ -1,7 +1,6 @@ > >> #ifndef ADVICE_H > >> #define ADVICE_H > >> -#include "git-compat-util.h" > >> extern int advice_push_update_rejected; > >> extern int advice_push_non_ff_current; > > The way I read the original discussion is "C source that includes > compat-util.h shouldn't if it already includes cache.h"; advice.h is > not C and does not (should not) include cache.h. > > The "left over bits" should not be blindly trusted, and besides, > Elijah punted to examine and think about each case and left it to > others, so whoever is picking it up should do the thinking, not a > blind conversion. I am not getting a feeling that this patch was > done with careful thinking after checking only this one. The mistake -- if any! -- is mine: I suggested to Outreachy students to look for the #leftoverbits needle in our mail archive haystack, and to pick something to get a feel for contributing to Git. Personally, I find the "whoever is picking it up should do the thinking" much too harsh for a first-time contributor who specifically came through the Outreachy program, i.e. expected to have a gentle introduction into the project, and into the ways we work. Granted, that introduction should have been performed by the potential mentors (i.e. Chris & I, but I was out sick), but let's face it: we are an open source project, so every single one of us should feel the call to be a mentor, and we should certainly try to make every new contributor as welcome as we would like to be invited into a new project. In this context, I would think that the "do the thinking" part is particularly hard because our rules are implicit, and inconsistent: when do we include header files, when do we skip the include? If in doubt, follow the age-old wisdom "when in Rome, do as the Romans do", i.e. ignore the explicitly written-down rules, and instead imitate what active contributors are doing. Unfortunately, I have no easy way to suggest for mining the mailing list for sentiments about including header files. And in any case, it would probably boil down on personal taste, which -- let's face it -- is rather diverse in our community... :-) So in this case, what I would suggest is to look instead for the commit history, where header files were added or modified. The Git command for that is: git log --no-merges -p \*.h Apart from the rather wonderful examples you see there for commit messages (I am a big fan of commit messages that are clear and descriptive, i.e. start by detailing the why rather than the how, with notes thrown in about design decisions that are not obvious from the patch), this command will lead us pretty soon to this commit, especially when looking for the search term #include: https://github.com/git/git/commit/69d846f05381 In other words, we explicitly introduced an `#include "git-compat-util.h"` in a header there. The commit message also offers a pretty compelling rationale: it was the most efficient way to have that header included *first thing* in all test helpers. Following that rationale, let's have a look at the patch we are improving here (because that's what code review really should all be about: improving the code, putting together all of our expertise to get the best patch we can in a reasonable amount of time): The first thing we can already say is that the change to t/helper/test-tool.h would revert the commit referenced above, so I think we should drop that change. Next, I want to have a look at advice.h: git grep -O 'advice\.h' (the backslash is necessary because this is a regular expression, and the period character has the special meaning "any character" there, unless escaped by a backslash) What we can see is that indeed, every file that includes this header already includes cache.h first. We can even see that cache.h *itself* includes advice.h, meaning that we could add another patch that drops the advice.h include from, say, commit.c. At this point, this seems to become a rabbit hole: which header files are already included in cache.h that are *also* included (unnecessarily) in .c files that *already* included cache.h? Ananya, it is now up to you how far you want to go down that rabbit hole ;-) If I had the time, *I* would now be tempted to try my hand at writing a script that analyzes our source code to ensure that: - "cache.h" or "git-compat-util.h" is the first header included (as per that commit message of the commit mentioned above) - every header that is already included in cache.h is not included by a .c file that already included cache.h It is the kind of side-track I could lose days over, but I have to admit that the benefit would probably not merit the effort ;-) In any case, I am delighted by your first patch: you took the first hurdle :-) Ciao, Johannes P.S.: Please record your contribution on the Outreachy site, unless you already did...