]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/MyFirstContribution.txt
MyFirstContribution: mention contrib/contacts/git-contacts
[thirdparty/git.git] / Documentation / MyFirstContribution.txt
CommitLineData
76644e32
ES
1My First Contribution to the Git Project
2========================================
5ef811ac 3:sectanchors:
76644e32 4
5ef811ac 5[[summary]]
76644e32
ES
6== Summary
7
8This is a tutorial demonstrating the end-to-end workflow of creating a change to
9the Git tree, sending it for review, and making changes based on comments.
10
5ef811ac 11[[prerequisites]]
76644e32
ES
12=== Prerequisites
13
14This tutorial assumes you're already fairly familiar with using Git to manage
15source code. The Git workflow steps will largely remain unexplained.
16
5ef811ac 17[[related-reading]]
76644e32
ES
18=== Related Reading
19
20This tutorial aims to summarize the following documents, but the reader may find
21useful additional context:
22
23- `Documentation/SubmittingPatches`
24- `Documentation/howto/new-command.txt`
25
4bb4fd42
ES
26[[getting-help]]
27=== Getting Help
28
29If you get stuck, you can seek help in the following places.
30
a2dc4341
ES
31==== git@vger.kernel.org
32
33This is the main Git project mailing list where code reviews, version
34announcements, design discussions, and more take place. Those interested in
35contributing are welcome to post questions here. The Git list requires
36plain-text-only emails and prefers inline and bottom-posting when replying to
37mail; you will be CC'd in all replies to you. Optionally, you can subscribe to
af3d2c16
JH
38the list by sending an email to <git+subscribe@vger.kernel.org>
39(see https://subspace.kernel.org/subscribing.html for details).
40The https://lore.kernel.org/git[archive] of this mailing list is
a2dc4341
ES
41available to view in a browser.
42
4bb4fd42
ES
43==== https://groups.google.com/forum/#!forum/git-mentoring[git-mentoring@googlegroups.com]
44
a2dc4341
ES
45This mailing list is targeted to new contributors and was created as a place to
46post questions and receive answers outside of the public eye of the main list.
47Veteran contributors who are especially interested in helping mentor newcomers
48are present on the list. In order to avoid search indexers, group membership is
49required to view messages; anyone can join and no approval is required.
4bb4fd42 50
91d23470 51==== https://web.libera.chat/#git-devel[#git-devel] on Libera Chat
4bb4fd42
ES
52
53This IRC channel is for conversations between Git contributors. If someone is
54currently online and knows the answer to your question, you can receive help
55in real time. Otherwise, you can read the
56https://colabti.org/irclogger/irclogger_logs/git-devel[scrollback] to see
57whether someone answered you. IRC does not allow offline private messaging, so
58if you try to private message someone and then log out of IRC, they cannot
59respond to you. It's better to ask your questions in the channel so that you
60can be answered if you disconnect and so that others can learn from the
61conversation.
62
5ef811ac 63[[getting-started]]
76644e32
ES
64== Getting Started
65
5ef811ac 66[[cloning]]
76644e32
ES
67=== Clone the Git Repository
68
69Git is mirrored in a number of locations. Clone the repository from one of them;
70https://git-scm.com/downloads suggests one of the best places to clone from is
71the mirror on GitHub.
72
73----
74$ git clone https://github.com/git/git git
2656fb16 75$ cd git
76644e32
ES
76----
77
3ada78de
ES
78[[dependencies]]
79=== Installing Dependencies
80
81To build Git from source, you need to have a handful of dependencies installed
82on your system. For a hint of what's needed, you can take a look at
83`INSTALL`, paying close attention to the section about Git's dependencies on
84external programs and libraries. That document mentions a way to "test-drive"
85our freshly built Git without installing; that's the method we'll be using in
86this tutorial.
87
88Make sure that your environment has everything you need by building your brand
89new clone of Git from the above step:
90
91----
92$ make
93----
94
95NOTE: The Git build is parallelizable. `-j#` is not included above but you can
96use it as you prefer, here and elsewhere.
97
5ef811ac 98[[identify-problem]]
76644e32
ES
99=== Identify Problem to Solve
100
101////
102Use + to indicate fixed-width here; couldn't get ` to work nicely with the
103quotes around "Pony Saying 'Um, Hello'".
104////
105In this tutorial, we will add a new command, +git psuh+, short for ``Pony Saying
106`Um, Hello''' - a feature which has gone unimplemented despite a high frequency
107of invocation during users' typical daily workflow.
108
109(We've seen some other effort in this space with the implementation of popular
110commands such as `sl`.)
111
5ef811ac 112[[setup-workspace]]
76644e32
ES
113=== Set Up Your Workspace
114
115Let's start by making a development branch to work on our changes. Per
116`Documentation/SubmittingPatches`, since a brand new command is a new feature,
117it's fine to base your work on `master`. However, in the future for bugfixes,
118etc., you should check that document and base it on the appropriate branch.
119
120For the purposes of this document, we will base all our work on the `master`
121branch of the upstream project. Create the `psuh` branch you will use for
122development like so:
123
124----
125$ git checkout -b psuh origin/master
126----
127
128We'll make a number of commits here in order to demonstrate how to send a topic
129with multiple patches up for review simultaneously.
130
5ef811ac 131[[code-it-up]]
76644e32
ES
132== Code It Up!
133
134NOTE: A reference implementation can be found at
135https://github.com/nasamuffin/git/tree/psuh.
136
5ef811ac 137[[add-new-command]]
76644e32
ES
138=== Adding a New Command
139
140Lots of the subcommands are written as builtins, which means they are
141implemented in C and compiled into the main `git` executable. Implementing the
142very simple `psuh` command as a built-in will demonstrate the structure of the
143codebase, the internal API, and the process of working together as a contributor
144with the reviewers and maintainer to integrate this change into the system.
145
146Built-in subcommands are typically implemented in a function named "cmd_"
147followed by the name of the subcommand, in a source file named after the
148subcommand and contained within `builtin/`. So it makes sense to implement your
149command in `builtin/psuh.c`. Create that file, and within it, write the entry
150point for your command in a function matching the style and signature:
151
152----
153int cmd_psuh(int argc, const char **argv, const char *prefix)
154----
155
156We'll also need to add the declaration of psuh; open up `builtin.h`, find the
24c68179
PS
157declaration for `cmd_pull`, and add a new line for `psuh` immediately before it,
158in order to keep the declarations alphabetically sorted:
76644e32
ES
159
160----
161int cmd_psuh(int argc, const char **argv, const char *prefix);
162----
163
6b79a218
JS
164Be sure to `#include "builtin.h"` in your `psuh.c`. You'll also need to
165`#include "gettext.h"` to use functions related to printing output text.
76644e32 166
6b79a218
JS
167Go ahead and add some throwaway printf to the `cmd_psuh` function. This is a
168decent starting point as we can now add build rules and register the command.
76644e32
ES
169
170NOTE: Your throwaway text, as well as much of the text you will be adding over
171the course of this tutorial, is user-facing. That means it needs to be
172localizable. Take a look at `po/README` under "Marking strings for translation".
173Throughout the tutorial, we will mark strings for translation as necessary; you
174should also do so when writing your user-facing commands in the future.
175
176----
177int cmd_psuh(int argc, const char **argv, const char *prefix)
178{
179 printf(_("Pony saying hello goes here.\n"));
180 return 0;
181}
182----
183
24c68179 184Let's try to build it. Open `Makefile`, find where `builtin/pull.o` is added
76644e32
ES
185to `BUILTIN_OBJS`, and add `builtin/psuh.o` in the same way next to it in
186alphabetical order. Once you've done so, move to the top-level directory and
187build simply with `make`. Also add the `DEVELOPER=1` variable to turn on
188some additional warnings:
189
190----
191$ echo DEVELOPER=1 >config.mak
192$ make
193----
194
195NOTE: When you are developing the Git project, it's preferred that you use the
196`DEVELOPER` flag; if there's some reason it doesn't work for you, you can turn
197it off, but it's a good idea to mention the problem to the mailing list.
198
76644e32
ES
199Great, now your new command builds happily on its own. But nobody invokes it.
200Let's change that.
201
202The list of commands lives in `git.c`. We can register a new command by adding
203a `cmd_struct` to the `commands[]` array. `struct cmd_struct` takes a string
204with the command name, a function pointer to the command implementation, and a
205setup option flag. For now, let's keep mimicking `push`. Find the line where
206`cmd_push` is registered, copy it, and modify it for `cmd_psuh`, placing the new
24c68179 207line in alphabetical order (immediately before `cmd_pull`).
76644e32
ES
208
209The options are documented in `builtin.h` under "Adding a new built-in." Since
210we hope to print some data about the user's current workspace context later,
211we need a Git directory, so choose `RUN_SETUP` as your only option.
212
213Go ahead and build again. You should see a clean build, so let's kick the tires
214and see if it works. There's a binary you can use to test with in the
215`bin-wrappers` directory.
216
217----
218$ ./bin-wrappers/git psuh
219----
220
221Check it out! You've got a command! Nice work! Let's commit this.
222
2656fb16
ES
223`git status` reveals modified `Makefile`, `builtin.h`, and `git.c` as well as
224untracked `builtin/psuh.c` and `git-psuh`. First, let's take care of the binary,
24c68179 225which should be ignored. Open `.gitignore` in your editor, find `/git-pull`, and
2656fb16
ES
226add an entry for your new command in alphabetical order:
227
228----
229...
230/git-prune-packed
231/git-psuh
232/git-pull
233/git-push
234/git-quiltimport
235/git-range-diff
236...
237----
238
239Checking `git status` again should show that `git-psuh` has been removed from
240the untracked list and `.gitignore` has been added to the modified list. Now we
241can stage and commit:
242
76644e32 243----
2656fb16 244$ git add Makefile builtin.h builtin/psuh.c git.c .gitignore
76644e32
ES
245$ git commit -s
246----
247
248You will be presented with your editor in order to write a commit message. Start
249the commit with a 50-column or less subject line, including the name of the
250component you're working on, followed by a blank line (always required) and then
251the body of your commit message, which should provide the bulk of the context.
252Remember to be explicit and provide the "Why" of your change, especially if it
253couldn't easily be understood from your diff. When editing your commit message,
3abd4a67 254don't remove the `Signed-off-by` trailer which was added by `-s` above.
76644e32
ES
255
256----
257psuh: add a built-in by popular demand
258
259Internal metrics indicate this is a command many users expect to be
260present. So here's an implementation to help drive customer
261satisfaction and engagement: a pony which doubtfully greets the user,
262or, a Pony Saying "Um, Hello" (PSUH).
263
264This commit message is intentionally formatted to 72 columns per line,
265starts with a single line as "commit message subject" that is written as
266if to command the codebase to do something (add this, teach a command
267that). The body of the message is designed to add information about the
268commit that is not readily deduced from reading the associated diff,
269such as answering the question "why?".
270
271Signed-off-by: A U Thor <author@example.com>
272----
273
274Go ahead and inspect your new commit with `git show`. "psuh:" indicates you
275have modified mainly the `psuh` command. The subject line gives readers an idea
276of what you've changed. The sign-off line (`-s`) indicates that you agree to
277the Developer's Certificate of Origin 1.1 (see the
278`Documentation/SubmittingPatches` +++[[dco]]+++ header).
279
280For the remainder of the tutorial, the subject line only will be listed for the
281sake of brevity. However, fully-fleshed example commit messages are available
282on the reference implementation linked at the top of this document.
283
5ef811ac 284[[implementation]]
76644e32
ES
285=== Implementation
286
287It's probably useful to do at least something besides printing out a string.
288Let's start by having a look at everything we get.
289
2656fb16
ES
290Modify your `cmd_psuh` implementation to dump the args you're passed, keeping
291existing `printf()` calls in place:
76644e32
ES
292
293----
294 int i;
295
296 ...
297
298 printf(Q_("Your args (there is %d):\n",
299 "Your args (there are %d):\n",
300 argc),
301 argc);
302 for (i = 0; i < argc; i++)
303 printf("%d: %s\n", i, argv[i]);
304
305 printf(_("Your current working directory:\n<top-level>%s%s\n"),
306 prefix ? "/" : "", prefix ? prefix : "");
307
308----
309
310Build and try it. As you may expect, there's pretty much just whatever we give
311on the command line, including the name of our command. (If `prefix` is empty
312for you, try `cd Documentation/ && ../bin-wrappers/git psuh`). That's not so
313helpful. So what other context can we get?
314
315Add a line to `#include "config.h"`. Then, add the following bits to the
316function body:
317
318----
319 const char *cfg_name;
320
321...
322
2656fb16 323 git_config(git_default_config, NULL);
9a53219f 324 if (git_config_get_string_tmp("user.name", &cfg_name) > 0)
76644e32
ES
325 printf(_("No name is found in config\n"));
326 else
327 printf(_("Your name: %s\n"), cfg_name);
328----
329
330`git_config()` will grab the configuration from config files known to Git and
9a53219f 331apply standard precedence rules. `git_config_get_string_tmp()` will look up
76644e32
ES
332a specific key ("user.name") and give you the value. There are a number of
333single-key lookup functions like this one; you can see them all (and more info
334about how to use `git_config()`) in `Documentation/technical/api-config.txt`.
335
336You should see that the name printed matches the one you see when you run:
337
338----
339$ git config --get user.name
340----
341
342Great! Now we know how to check for values in the Git config. Let's commit this
343too, so we don't lose our progress.
344
345----
346$ git add builtin/psuh.c
347$ git commit -sm "psuh: show parameters & config opts"
348----
349
350NOTE: Again, the above is for sake of brevity in this tutorial. In a real change
351you should not use `-m` but instead use the editor to write a meaningful
352message.
353
354Still, it'd be nice to know what the user's working context is like. Let's see
355if we can print the name of the user's current branch. We can mimic the
356`git status` implementation; the printer is located in `wt-status.c` and we can
357see that the branch is held in a `struct wt_status`.
358
359`wt_status_print()` gets invoked by `cmd_status()` in `builtin/commit.c`.
360Looking at that implementation we see the status config being populated like so:
361
362----
363status_init_config(&s, git_status_config);
364----
365
366But as we drill down, we can find that `status_init_config()` wraps a call
367to `git_config()`. Let's modify the code we wrote in the previous commit.
368
369Be sure to include the header to allow you to use `struct wt_status`:
370----
371#include "wt-status.h"
372----
373
374Then modify your `cmd_psuh` implementation to declare your `struct wt_status`,
375prepare it, and print its contents:
376
377----
378 struct wt_status status;
379
380...
381
382 wt_status_prepare(the_repository, &status);
383 git_config(git_default_config, &status);
384
385...
386
387 printf(_("Your current branch: %s\n"), status.branch);
388----
389
390Run it again. Check it out - here's the (verbose) name of your current branch!
391
392Let's commit this as well.
393
394----
2656fb16 395$ git add builtin/psuh.c
76644e32
ES
396$ git commit -sm "psuh: print the current branch"
397----
398
399Now let's see if we can get some info about a specific commit.
400
401Luckily, there are some helpers for us here. `commit.h` has a function called
402`lookup_commit_reference_by_name` to which we can simply provide a hardcoded
403string; `pretty.h` has an extremely handy `pp_commit_easy()` call which doesn't
404require a full format object to be passed.
405
406Add the following includes:
407
408----
409#include "commit.h"
410#include "pretty.h"
411----
412
413Then, add the following lines within your implementation of `cmd_psuh()` near
414the declarations and the logic, respectively.
415
416----
417 struct commit *c = NULL;
418 struct strbuf commitline = STRBUF_INIT;
419
420...
421
422 c = lookup_commit_reference_by_name("origin/master");
423
424 if (c != NULL) {
425 pp_commit_easy(CMIT_FMT_ONELINE, c, &commitline);
426 printf(_("Current commit: %s\n"), commitline.buf);
427 }
428----
429
430The `struct strbuf` provides some safety belts to your basic `char*`, one of
431which is a length member to prevent buffer overruns. It needs to be initialized
432nicely with `STRBUF_INIT`. Keep it in mind when you need to pass around `char*`.
433
434`lookup_commit_reference_by_name` resolves the name you pass it, so you can play
435with the value there and see what kind of things you can come up with.
436
437`pp_commit_easy` is a convenience wrapper in `pretty.h` that takes a single
438format enum shorthand, rather than an entire format struct. It then
439pretty-prints the commit according to that shorthand. These are similar to the
440formats available with `--pretty=FOO` in many Git commands.
441
442Build it and run, and if you're using the same name in the example, you should
443see the subject line of the most recent commit in `origin/master` that you know
444about. Neat! Let's commit that as well.
445
446----
2656fb16 447$ git add builtin/psuh.c
76644e32
ES
448$ git commit -sm "psuh: display the top of origin/master"
449----
450
5ef811ac 451[[add-documentation]]
76644e32
ES
452=== Adding Documentation
453
454Awesome! You've got a fantastic new command that you're ready to share with the
455community. But hang on just a minute - this isn't very user-friendly. Run the
456following:
457
458----
459$ ./bin-wrappers/git help psuh
460----
461
462Your new command is undocumented! Let's fix that.
463
464Take a look at `Documentation/git-*.txt`. These are the manpages for the
465subcommands that Git knows about. You can open these up and take a look to get
466acquainted with the format, but then go ahead and make a new file
467`Documentation/git-psuh.txt`. Like with most of the documentation in the Git
468project, help pages are written with AsciiDoc (see CodingGuidelines, "Writing
469Documentation" section). Use the following template to fill out your own
470manpage:
471
472// Surprisingly difficult to embed AsciiDoc source within AsciiDoc.
473[listing]
474....
475git-psuh(1)
476===========
477
478NAME
479----
480git-psuh - Delight users' typo with a shy horse
481
482
483SYNOPSIS
484--------
485[verse]
b37e0ec3 486'git-psuh [<arg>...]'
76644e32
ES
487
488DESCRIPTION
489-----------
490...
491
492OPTIONS[[OPTIONS]]
493------------------
494...
495
496OUTPUT
497------
498...
499
76644e32
ES
500GIT
501---
502Part of the linkgit:git[1] suite
503....
504
505The most important pieces of this to note are the file header, underlined by =,
506the NAME section, and the SYNOPSIS, which would normally contain the grammar if
507your command took arguments. Try to use well-established manpage headers so your
508documentation is consistent with other Git and UNIX manpages; this makes life
509easier for your user, who can skip to the section they know contains the
510information they need.
511
f5bcde6c
ES
512NOTE: Before trying to build the docs, make sure you have the package `asciidoc`
513installed.
514
76644e32
ES
515Now that you've written your manpage, you'll need to build it explicitly. We
516convert your AsciiDoc to troff which is man-readable like so:
517
518----
519$ make all doc
520$ man Documentation/git-psuh.1
521----
522
523or
524
525----
526$ make -C Documentation/ git-psuh.1
527$ man Documentation/git-psuh.1
528----
529
76644e32
ES
530While this isn't as satisfying as running through `git help`, you can at least
531check that your help page looks right.
532
533You can also check that the documentation coverage is good (that is, the project
534sees that your command has been implemented as well as documented) by running
535`make check-docs` from the top-level.
536
537Go ahead and commit your new documentation change.
538
5ef811ac 539[[add-usage]]
76644e32
ES
540=== Adding Usage Text
541
542Try and run `./bin-wrappers/git psuh -h`. Your command should crash at the end.
543That's because `-h` is a special case which your command should handle by
544printing usage.
545
546Take a look at `Documentation/technical/api-parse-options.txt`. This is a handy
547tool for pulling out options you need to be able to handle, and it takes a
548usage string.
549
b37e0ec3
CC
550In order to use it, we'll need to prepare a NULL-terminated array of usage
551strings and a `builtin_psuh_options` array.
76644e32 552
b37e0ec3
CC
553Add a line to `#include "parse-options.h"`.
554
555At global scope, add your array of usage strings:
76644e32
ES
556
557----
558static const char * const psuh_usage[] = {
b37e0ec3 559 N_("git psuh [<arg>...]"),
76644e32
ES
560 NULL,
561};
562----
563
564Then, within your `cmd_psuh()` implementation, we can declare and populate our
565`option` struct. Ours is pretty boring but you can add more to it if you want to
566explore `parse_options()` in more detail:
567
568----
569 struct option options[] = {
570 OPT_END()
571 };
572----
573
574Finally, before you print your args and prefix, add the call to
575`parse-options()`:
576
577----
578 argc = parse_options(argc, argv, prefix, options, psuh_usage, 0);
579----
580
581This call will modify your `argv` parameter. It will strip the options you
582specified in `options` from `argv` and the locations pointed to from `options`
583entries will be updated. Be sure to replace your `argc` with the result from
584`parse_options()`, or you will be confused if you try to parse `argv` later.
585
586It's worth noting the special argument `--`. As you may be aware, many Unix
587commands use `--` to indicate "end of named parameters" - all parameters after
588the `--` are interpreted merely as positional arguments. (This can be handy if
589you want to pass as a parameter something which would usually be interpreted as
590a flag.) `parse_options()` will terminate parsing when it reaches `--` and give
591you the rest of the options afterwards, untouched.
592
4ed55629
ES
593Now that you have a usage hint, you can teach Git how to show it in the general
594command list shown by `git help git` or `git help -a`, which is generated from
595`command-list.txt`. Find the line for 'git-pull' so you can add your 'git-psuh'
596line above it in alphabetical order. Now, we can add some attributes about the
597command which impacts where it shows up in the aforementioned help commands. The
598top of `command-list.txt` shares some information about what each attribute
599means; in those help pages, the commands are sorted according to these
600attributes. `git psuh` is user-facing, or porcelain - so we will mark it as
601"mainporcelain". For "mainporcelain" commands, the comments at the top of
602`command-list.txt` indicate we can also optionally add an attribute from another
603list; since `git psuh` shows some information about the user's workspace but
604doesn't modify anything, let's mark it as "info". Make sure to keep your
605attributes in the same style as the rest of `command-list.txt` using spaces to
606align and delineate them:
607
608----
609git-prune-packed plumbingmanipulators
610git-psuh mainporcelain info
611git-pull mainporcelain remote
612git-push mainporcelain remote
613----
614
76644e32
ES
615Build again. Now, when you run with `-h`, you should see your usage printed and
616your command terminated before anything else interesting happens. Great!
617
618Go ahead and commit this one, too.
619
5ef811ac 620[[testing]]
76644e32
ES
621== Testing
622
623It's important to test your code - even for a little toy command like this one.
624Moreover, your patch won't be accepted into the Git tree without tests. Your
625tests should:
626
627* Illustrate the current behavior of the feature
628* Prove the current behavior matches the expected behavior
629* Ensure the externally-visible behavior isn't broken in later changes
630
631So let's write some tests.
632
633Related reading: `t/README`
634
5ef811ac 635[[overview-test-structure]]
76644e32
ES
636=== Overview of Testing Structure
637
638The tests in Git live in `t/` and are named with a 4-digit decimal number using
639the schema shown in the Naming Tests section of `t/README`.
640
5ef811ac 641[[write-new-test]]
76644e32
ES
642=== Writing Your Test
643
644Since this a toy command, let's go ahead and name the test with t9999. However,
645as many of the family/subcmd combinations are full, best practice seems to be
646to find a command close enough to the one you've added and share its naming
647space.
648
649Create a new file `t/t9999-psuh-tutorial.sh`. Begin with the header as so (see
650"Writing Tests" and "Source 'test-lib.sh'" in `t/README`):
651
652----
653#!/bin/sh
654
655test_description='git-psuh test
656
657This test runs git-psuh and makes sure it does not crash.'
658
659. ./test-lib.sh
660----
661
662Tests are framed inside of a `test_expect_success` in order to output TAP
663formatted results. Let's make sure that `git psuh` doesn't exit poorly and does
664mention the right animal somewhere:
665
666----
667test_expect_success 'runs correctly with no args and good output' '
668 git psuh >actual &&
d162b25f 669 grep Pony actual
76644e32
ES
670'
671----
672
673Indicate that you've run everything you wanted by adding the following at the
674bottom of your script:
675
676----
677test_done
678----
679
680Make sure you mark your test script executable:
681
682----
683$ chmod +x t/t9999-psuh-tutorial.sh
684----
685
686You can get an idea of whether you created your new test script successfully
687by running `make -C t test-lint`, which will check for things like test number
688uniqueness, executable bit, and so on.
689
5ef811ac 690[[local-test]]
76644e32
ES
691=== Running Locally
692
693Let's try and run locally:
694
695----
696$ make
697$ cd t/ && prove t9999-psuh-tutorial.sh
698----
699
700You can run the full test suite and ensure `git-psuh` didn't break anything:
701
702----
703$ cd t/
704$ prove -j$(nproc) --shuffle t[0-9]*.sh
705----
706
707NOTE: You can also do this with `make test` or use any testing harness which can
708speak TAP. `prove` can run concurrently. `shuffle` randomizes the order the
709tests are run in, which makes them resilient against unwanted inter-test
710dependencies. `prove` also makes the output nicer.
711
712Go ahead and commit this change, as well.
713
5ef811ac 714[[ready-to-share]]
489ef3ba 715== Getting Ready to Share: Anatomy of a Patch Series
76644e32
ES
716
717You may have noticed already that the Git project performs its code reviews via
718emailed patches, which are then applied by the maintainer when they are ready
489ef3ba 719and approved by the community. The Git project does not accept contributions from
76644e32 720pull requests, and the patches emailed for review need to be formatted a
489ef3ba
PB
721specific way.
722
723:patch-series: https://lore.kernel.org/git/pull.1218.git.git.1645209647.gitgitgadget@gmail.com/
724:lore: https://lore.kernel.org/git/
725
726Before taking a look at how to convert your commits into emailed patches,
727let's analyze what the end result, a "patch series", looks like. Here is an
728{patch-series}[example] of the summary view for a patch series on the web interface of
729the {lore}[Git mailing list archive]:
730
731----
7322022-02-18 18:40 [PATCH 0/3] libify reflog John Cai via GitGitGadget
7332022-02-18 18:40 ` [PATCH 1/3] reflog: libify delete reflog function and helpers John Cai via GitGitGadget
7342022-02-18 19:10 ` Ævar Arnfjörð Bjarmason [this message]
7352022-02-18 19:39 ` Taylor Blau
7362022-02-18 19:48 ` Ævar Arnfjörð Bjarmason
7372022-02-18 19:35 ` Taylor Blau
7382022-02-21 1:43 ` John Cai
7392022-02-21 1:50 ` Taylor Blau
7402022-02-23 19:50 ` John Cai
c5353c45 7412022-02-18 20:00 ` // other replies elided
489ef3ba
PB
7422022-02-18 18:40 ` [PATCH 2/3] reflog: call reflog_delete from reflog.c John Cai via GitGitGadget
7432022-02-18 19:15 ` Ævar Arnfjörð Bjarmason
7442022-02-18 20:26 ` Junio C Hamano
7452022-02-18 18:40 ` [PATCH 3/3] stash: call reflog_delete from reflog.c John Cai via GitGitGadget
7462022-02-18 19:20 ` Ævar Arnfjörð Bjarmason
7472022-02-19 0:21 ` Taylor Blau
7482022-02-22 2:36 ` John Cai
7492022-02-22 10:51 ` Ævar Arnfjörð Bjarmason
7502022-02-18 19:29 ` [PATCH 0/3] libify reflog Ævar Arnfjörð Bjarmason
7512022-02-22 18:30 ` [PATCH v2 0/3] libify reflog John Cai via GitGitGadget
7522022-02-22 18:30 ` [PATCH v2 1/3] stash: add test to ensure reflog --rewrite --updatref behavior John Cai via GitGitGadget
7532022-02-23 8:54 ` Ævar Arnfjörð Bjarmason
7542022-02-23 21:27 ` Junio C Hamano
755// continued
756----
757
758We can note a few things:
759
760- Each commit is sent as a separate email, with the commit message title as
761 subject, prefixed with "[PATCH _i_/_n_]" for the _i_-th commit of an
762 _n_-commit series.
763- Each patch is sent as a reply to an introductory email called the _cover
764 letter_ of the series, prefixed "[PATCH 0/_n_]".
afc8c925
PB
765- Subsequent iterations of the patch series are labelled "PATCH v2", "PATCH
766 v3", etc. in place of "PATCH". For example, "[PATCH v2 1/3]" would be the first of
767 three patches in the second iteration. Each iteration is sent with a new cover
768 letter (like "[PATCH v2 0/3]" above), itself a reply to the cover letter of the
769 previous iteration (more on that below).
770
771NOTE: A single-patch topic is sent with "[PATCH]", "[PATCH v2]", etc. without
772_i_/_n_ numbering (in the above thread overview, no single-patch topic appears,
773though).
774
775[[cover-letter]]
776=== The cover letter
777
778In addition to an email per patch, the Git community also expects your patches
779to come with a cover letter. This is an important component of change
780submission as it explains to the community from a high level what you're trying
781to do, and why, in a way that's more apparent than just looking at your
782patches.
783
784The title of your cover letter should be something which succinctly covers the
785purpose of your entire topic branch. It's often in the imperative mood, just
786like our commit message titles. Here is how we'll title our series:
787
788---
789Add the 'psuh' command
790---
791
792The body of the cover letter is used to give additional context to reviewers.
793Be sure to explain anything your patches don't make clear on their own, but
794remember that since the cover letter is not recorded in the commit history,
795anything that might be useful to future readers of the repository's history
796should also be in your commit messages.
797
798Here's an example body for `psuh`:
799
800----
801Our internal metrics indicate widespread interest in the command
802git-psuh - that is, many users are trying to use it, but finding it is
803unavailable, using some unknown workaround instead.
804
805The following handful of patches add the psuh command and implement some
806handy features on top of it.
807
808This patchset is part of the MyFirstContribution tutorial and should not
809be merged.
810----
489ef3ba
PB
811
812At this point the tutorial diverges, in order to demonstrate two
76644e32
ES
813different methods of formatting your patchset and getting it reviewed.
814
815The first method to be covered is GitGitGadget, which is useful for those
816already familiar with GitHub's common pull request workflow. This method
817requires a GitHub account.
818
819The second method to be covered is `git send-email`, which can give slightly
820more fine-grained control over the emails to be sent. This method requires some
821setup which can change depending on your system and will not be covered in this
822tutorial.
823
824Regardless of which method you choose, your engagement with reviewers will be
825the same; the review process will be covered after the sections on GitGitGadget
826and `git send-email`.
827
5ef811ac 828[[howto-ggg]]
76644e32
ES
829== Sending Patches via GitGitGadget
830
831One option for sending patches is to follow a typical pull request workflow and
832send your patches out via GitGitGadget. GitGitGadget is a tool created by
833Johannes Schindelin to make life as a Git contributor easier for those used to
834the GitHub PR workflow. It allows contributors to open pull requests against its
835mirror of the Git project, and does some magic to turn the PR into a set of
836emails and send them out for you. It also runs the Git continuous integration
d05b08cd 837suite for you. It's documented at https://gitgitgadget.github.io/.
76644e32 838
5ef811ac 839[[create-fork]]
76644e32
ES
840=== Forking `git/git` on GitHub
841
842Before you can send your patch off to be reviewed using GitGitGadget, you will
843need to fork the Git project and upload your changes. First thing - make sure
844you have a GitHub account.
845
846Head to the https://github.com/git/git[GitHub mirror] and look for the Fork
847button. Place your fork wherever you deem appropriate and create it.
848
5ef811ac 849[[upload-to-fork]]
76644e32
ES
850=== Uploading to Your Own Fork
851
852To upload your branch to your own fork, you'll need to add the new fork as a
853remote. You can use `git remote -v` to show the remotes you have added already.
854From your new fork's page on GitHub, you can press "Clone or download" to get
855the URL; then you need to run the following to add, replacing your own URL and
856remote name for the examples provided:
857
858----
859$ git remote add remotename git@github.com:remotename/git.git
860----
861
862or to use the HTTPS URL:
863
864----
865$ git remote add remotename https://github.com/remotename/git/.git
866----
867
868Run `git remote -v` again and you should see the new remote showing up.
869`git fetch remotename` (with the real name of your remote replaced) in order to
870get ready to push.
871
872Next, double-check that you've been doing all your development in a new branch
873by running `git branch`. If you didn't, now is a good time to move your new
874commits to their own branch.
875
876As mentioned briefly at the beginning of this document, we are basing our work
877on `master`, so go ahead and update as shown below, or using your preferred
878workflow.
879
880----
881$ git checkout master
882$ git pull -r
883$ git rebase master psuh
884----
885
886Finally, you're ready to push your new topic branch! (Due to our branch and
887command name choices, be careful when you type the command below.)
888
889----
890$ git push remotename psuh
891----
892
893Now you should be able to go and check out your newly created branch on GitHub.
894
5ef811ac 895[[send-pr-ggg]]
76644e32
ES
896=== Sending a PR to GitGitGadget
897
898In order to have your code tested and formatted for review, you need to start by
899opening a Pull Request against `gitgitgadget/git`. Head to
900https://github.com/gitgitgadget/git and open a PR either with the "New pull
901request" button or the convenient "Compare & pull request" button that may
902appear with the name of your newly pushed branch.
903
c2cd4b59
PB
904Review the PR's title and description, as they're used by GitGitGadget
905respectively as the subject and body of the cover letter for your change. Refer
906to <<cover-letter,"The cover letter">> above for advice on how to title your
907submission and what content to include in the description.
908
4ec50080
PB
909NOTE: For single-patch contributions, your commit message should already be
910meaningful and explain at a high level the purpose (what is happening and why)
911of your patch, so you usually do not need any additional context. In that case,
912remove the PR description that GitHub automatically generates from your commit
913message (your PR description should be empty). If you do need to supply even
914more context, you can do so in that space and it will be appended to the email
915that GitGitGadget will send, between the three-dash line and the diffstat
916(see <<single-patch,Bonus Chapter: One-Patch Changes>> for how this looks once
917submitted).
918
c2cd4b59 919When you're happy, submit your pull request.
76644e32 920
5ef811ac 921[[run-ci-ggg]]
76644e32
ES
922=== Running CI and Getting Ready to Send
923
924If it's your first time using GitGitGadget (which is likely, as you're using
925this tutorial) then someone will need to give you permission to use the tool.
926As mentioned in the GitGitGadget documentation, you just need someone who
927already uses it to comment on your PR with `/allow <username>`. GitGitGadget
928will automatically run your PRs through the CI even without the permission given
929but you will not be able to `/submit` your changes until someone allows you to
930use the tool.
931
3c8d754c
ES
932NOTE: You can typically find someone who can `/allow` you on GitGitGadget by
933either examining recent pull requests where someone has been granted `/allow`
934(https://github.com/gitgitgadget/git/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aopen+%22%2Fallow%22[Search:
935is:pr is:open "/allow"]), in which case both the author and the person who
936granted the `/allow` can now `/allow` you, or by inquiring on the
91d23470 937https://web.libera.chat/#git-devel[#git-devel] IRC channel on Libera Chat
3c8d754c
ES
938linking your pull request and asking for someone to `/allow` you.
939
76644e32
ES
940If the CI fails, you can update your changes with `git rebase -i` and push your
941branch again:
942
943----
944$ git push -f remotename psuh
945----
946
947In fact, you should continue to make changes this way up until the point when
948your patch is accepted into `next`.
949
950////
951TODO https://github.com/gitgitgadget/gitgitgadget/issues/83
952It'd be nice to be able to verify that the patch looks good before sending it
953to everyone on Git mailing list.
5ef811ac 954[[check-work-ggg]]
76644e32
ES
955=== Check Your Work
956////
957
5ef811ac 958[[send-mail-ggg]]
76644e32
ES
959=== Sending Your Patches
960
961Now that your CI is passing and someone has granted you permission to use
962GitGitGadget with the `/allow` command, sending out for review is as simple as
963commenting on your PR with `/submit`.
964
5ef811ac 965[[responding-ggg]]
76644e32
ES
966=== Updating With Comments
967
968Skip ahead to <<reviewing,Responding to Reviews>> for information on how to
969reply to review comments you will receive on the mailing list.
970
971Once you have your branch again in the shape you want following all review
972comments, you can submit again:
973
974----
975$ git push -f remotename psuh
976----
977
978Next, go look at your pull request against GitGitGadget; you should see the CI
979has been kicked off again. Now while the CI is running is a good time for you
980to modify your description at the top of the pull request thread; it will be
981used again as the cover letter. You should use this space to describe what
982has changed since your previous version, so that your reviewers have some idea
983of what they're looking at. When the CI is done running, you can comment once
984more with `/submit` - GitGitGadget will automatically add a v2 mark to your
985changes.
986
5ef811ac 987[[howto-git-send-email]]
76644e32
ES
988== Sending Patches with `git send-email`
989
990If you don't want to use GitGitGadget, you can also use Git itself to mail your
991patches. Some benefits of using Git this way include finer grained control of
992subject line (for example, being able to use the tag [RFC PATCH] in the subject)
993and being able to send a ``dry run'' mail to yourself to ensure it all looks
994good before going out to the list.
995
5ef811ac 996[[setup-git-send-email]]
76644e32
ES
997=== Prerequisite: Setting Up `git send-email`
998
999Configuration for `send-email` can vary based on your operating system and email
1000provider, and so will not be covered in this tutorial, beyond stating that in
1001many distributions of Linux, `git-send-email` is not packaged alongside the
1002typical `git` install. You may need to install this additional package; there
1003are a number of resources online to help you do so. You will also need to
1004determine the right way to configure it to use your SMTP server; again, as this
1005configuration can change significantly based on your system and email setup, it
1006is out of scope for the context of this tutorial.
1007
5ef811ac 1008[[format-patch]]
76644e32
ES
1009=== Preparing Initial Patchset
1010
1011Sending emails with Git is a two-part process; before you can prepare the emails
1012themselves, you'll need to prepare the patches. Luckily, this is pretty simple:
1013
1014----
0b45a41d
JH
1015$ git format-patch --cover-letter -o psuh/ --base=auto psuh@{u}..psuh
1016----
1017
1018 . The `--cover-letter` option tells `format-patch` to create a
1019 cover letter template for you. You will need to fill in the
1020 template before you're ready to send - but for now, the template
1021 will be next to your other patches.
1022
1023 . The `-o psuh/` option tells `format-patch` to place the patch
1024 files into a directory. This is useful because `git send-email`
1025 can take a directory and send out all the patches from there.
1026
1027 . The `--base=auto` option tells the command to record the "base
1028 commit", on which the recipient is expected to apply the patch
1029 series. The `auto` value will cause `format-patch` to compute
1030 the base commit automatically, which is the merge base of tip
1031 commit of the remote-tracking branch and the specified revision
1032 range.
1033
1034 . The `psuh@{u}..psuh` option tells `format-patch` to generate
1035 patches for the commits you created on the `psuh` branch since it
1036 forked from its upstream (which is `origin/master` if you
1037 followed the example in the "Set up your workspace" section). If
1038 you are already on the `psuh` branch, you can just say `@{u}`,
1039 which means "commits on the current branch since it forked from
1040 its upstream", which is the same thing.
1041
1042The command will make one patch file per commit. After you
76644e32
ES
1043run, you can go have a look at each of the patches with your favorite text
1044editor and make sure everything looks alright; however, it's not recommended to
1045make code fixups via the patch file. It's a better idea to make the change the
1046normal way using `git rebase -i` or by adding a new commit than by modifying a
1047patch.
1048
1049NOTE: Optionally, you can also use the `--rfc` flag to prefix your patch subject
1050with ``[RFC PATCH]'' instead of ``[PATCH]''. RFC stands for ``request for
1051comments'' and indicates that while your code isn't quite ready for submission,
1052you'd like to begin the code review process. This can also be used when your
1053patch is a proposal, but you aren't sure whether the community wants to solve
1054the problem with that approach or not - to conduct a sort of design review. You
1055may also see on the list patches marked ``WIP'' - this means they are incomplete
1056but want reviewers to look at what they have so far. You can add this flag with
1057`--subject-prefix=WIP`.
1058
1059Check and make sure that your patches and cover letter template exist in the
1060directory you specified - you're nearly ready to send out your review!
1061
afc8c925 1062[[preparing-cover-letter]]
76644e32
ES
1063=== Preparing Email
1064
e97d474c
PB
1065Since you invoked `format-patch` with `--cover-letter`, you've already got a
1066cover letter template ready. Open it up in your favorite editor.
76644e32
ES
1067
1068You should see a number of headers present already. Check that your `From:`
e97d474c
PB
1069header is correct. Then modify your `Subject:` (see <<cover-letter,above>> for
1070how to choose good title for your patch series):
76644e32
ES
1071
1072----
e97d474c 1073Subject: [PATCH 0/7] Add the 'psuh' command
76644e32
ES
1074----
1075
1076Make sure you retain the ``[PATCH 0/X]'' part; that's what indicates to the Git
e97d474c
PB
1077community that this email is the beginning of a patch series, and many
1078reviewers filter their email for this type of flag.
76644e32
ES
1079
1080You'll need to add some extra parameters when you invoke `git send-email` to add
1081the cover letter.
1082
e97d474c
PB
1083Next you'll have to fill out the body of your cover letter. Again, see
1084<<cover-letter,above>> for what content to include.
76644e32
ES
1085
1086The template created by `git format-patch --cover-letter` includes a diffstat.
1087This gives reviewers a summary of what they're in for when reviewing your topic.
1088The one generated for `psuh` from the sample implementation looks like this:
1089
1090----
1091 Documentation/git-psuh.txt | 40 +++++++++++++++++++++
1092 Makefile | 1 +
1093 builtin.h | 1 +
1094 builtin/psuh.c | 73 ++++++++++++++++++++++++++++++++++++++
1095 git.c | 1 +
1096 t/t9999-psuh-tutorial.sh | 12 +++++++
1097 6 files changed, 128 insertions(+)
1098 create mode 100644 Documentation/git-psuh.txt
1099 create mode 100644 builtin/psuh.c
1100 create mode 100755 t/t9999-psuh-tutorial.sh
1101----
1102
1103Finally, the letter will include the version of Git used to generate the
1104patches. You can leave that string alone.
1105
5ef811ac 1106[[sending-git-send-email]]
76644e32
ES
1107=== Sending Email
1108
1109At this point you should have a directory `psuh/` which is filled with your
1110patches and a cover letter. Time to mail it out! You can send it like this:
1111
1112----
1113$ git send-email --to=target@example.com psuh/*.patch
1114----
1115
1116NOTE: Check `git help send-email` for some other options which you may find
1117valuable, such as changing the Reply-to address or adding more CC and BCC lines.
1118
7e50b3f5
LA
1119:contrib-scripts: footnoteref:[contrib-scripts,Scripts under `contrib/` are +
1120not part of the core `git` binary and must be called directly. Clone the Git +
1121codebase and run `perl contrib/contacts/git-contacts`.]
1122
1123NOTE: If you're not sure whom to CC, running `contrib/contacts/git-contacts` can
1124list potential reviewers. In addition, you can do `git send-email
1125--cc-cmd='perl contrib/contacts/git-contacts' feature/*.patch`{contrib-scripts} to
1126automatically pass this list of emails to `send-email`.
1127
76644e32
ES
1128NOTE: When you are sending a real patch, it will go to git@vger.kernel.org - but
1129please don't send your patchset from the tutorial to the real mailing list! For
1130now, you can send it to yourself, to make sure you understand how it will look.
1131
1132After you run the command above, you will be presented with an interactive
1133prompt for each patch that's about to go out. This gives you one last chance to
1134edit or quit sending something (but again, don't edit code this way). Once you
1135press `y` or `a` at these prompts your emails will be sent! Congratulations!
1136
1137Awesome, now the community will drop everything and review your changes. (Just
1138kidding - be patient!)
1139
5ef811ac 1140[[v2-git-send-email]]
76644e32
ES
1141=== Sending v2
1142
1cc31e15
GC
1143This section will focus on how to send a v2 of your patchset. To learn what
1144should go into v2, skip ahead to <<reviewing,Responding to Reviews>> for
1145information on how to handle comments from reviewers.
1146
1147We'll reuse our `psuh` topic branch for v2. Before we make any changes, we'll
1148mark the tip of our v1 branch for easy reference:
76644e32 1149
1cc31e15
GC
1150----
1151$ git checkout psuh
1152$ git branch psuh-v1
1153----
76644e32 1154
1cc31e15
GC
1155Refine your patch series by using `git rebase -i` to adjust commits based upon
1156reviewer comments. Once the patch series is ready for submission, generate your
1157patches again, but with some new flags:
76644e32
ES
1158
1159----
1cc31e15 1160$ git format-patch -v2 --cover-letter -o psuh/ --range-diff master..psuh-v1 master..
76644e32
ES
1161----
1162
1cc31e15
GC
1163The `--range-diff master..psuh-v1` parameter tells `format-patch` to include a
1164range-diff between `psuh-v1` and `psuh` in the cover letter (see
1165linkgit:git-range-diff[1]). This helps tell reviewers about the differences
1166between your v1 and v2 patches.
1167
1168The `-v2` parameter tells `format-patch` to output your patches
1169as version "2". For instance, you may notice that your v2 patches are
1170all named like `v2-000n-my-commit-subject.patch`. `-v2` will also format
1171your patches by prefixing them with "[PATCH v2]" instead of "[PATCH]",
1172and your range-diff will be prefaced with "Range-diff against v1".
1173
72991ff5 1174After you run this command, `format-patch` will output the patches to the `psuh/`
1cc31e15
GC
1175directory, alongside the v1 patches. Using a single directory makes it easy to
1176refer to the old v1 patches while proofreading the v2 patches, but you will need
1177to be careful to send out only the v2 patches. We will use a pattern like
78b6369e 1178`psuh/v2-*.patch` (not `psuh/*.patch`, which would match v1 and v2 patches).
76644e32
ES
1179
1180Edit your cover letter again. Now is a good time to mention what's different
1181between your last version and now, if it's something significant. You do not
1182need the exact same body in your second cover letter; focus on explaining to
1183reviewers the changes you've made that may not be as visible.
1184
ba4324c4 1185You will also need to go and find the Message-ID of your previous cover letter.
76644e32
ES
1186You can either note it when you send the first series, from the output of `git
1187send-email`, or you can look it up on the
46c67492 1188https://lore.kernel.org/git[mailing list]. Find your cover letter in the
ba4324c4 1189archives, click on it, then click "permalink" or "raw" to reveal the Message-ID
76644e32
ES
1190header. It should match:
1191
1192----
ba4324c4 1193Message-ID: <foo.12345.author@example.com>
76644e32
ES
1194----
1195
ba4324c4
JH
1196Your Message-ID is `<foo.12345.author@example.com>`. This example will be used
1197below as well; make sure to replace it with the correct Message-ID for your
1198**previous cover letter** - that is, if you're sending v2, use the Message-ID
1199from v1; if you're sending v3, use the Message-ID from v2.
76644e32
ES
1200
1201While you're looking at the email, you should also note who is CC'd, as it's
1202common practice in the mailing list to keep all CCs on a thread. You can add
1203these CC lines directly to your cover letter with a line like so in the header
1204(before the Subject line):
1205
1206----
1207CC: author@example.com, Othe R <other@example.com>
1208----
1209
1210Now send the emails again, paying close attention to which messages you pass in
1211to the command:
1212
1213----
1214$ git send-email --to=target@example.com
1215 --in-reply-to="<foo.12345.author@example.com>"
1cc31e15 1216 psuh/v2-*.patch
76644e32
ES
1217----
1218
5ef811ac 1219[[single-patch]]
76644e32
ES
1220=== Bonus Chapter: One-Patch Changes
1221
1222In some cases, your very small change may consist of only one patch. When that
1223happens, you only need to send one email. Your commit message should already be
1224meaningful and explain at a high level the purpose (what is happening and why)
1225of your patch, but if you need to supply even more context, you can do so below
1226the `---` in your patch. Take the example below, which was generated with `git
1227format-patch` on a single commit, and then edited to add the content between
1228the `---` and the diffstat.
1229
1230----
1231From 1345bbb3f7ac74abde040c12e737204689a72723 Mon Sep 17 00:00:00 2001
1232From: A U Thor <author@example.com>
1233Date: Thu, 18 Apr 2019 15:11:02 -0700
1234Subject: [PATCH] README: change the grammar
1235
1236I think it looks better this way. This part of the commit message will
1237end up in the commit-log.
1238
1239Signed-off-by: A U Thor <author@example.com>
1240---
1241Let's have a wild discussion about grammar on the mailing list. This
1242part of my email will never end up in the commit log. Here is where I
1243can add additional context to the mailing list about my intent, outside
1244of the context of the commit log. This section was added after `git
1245format-patch` was run, by editing the patch file in a text editor.
1246
1247 README.md | 2 +-
1248 1 file changed, 1 insertion(+), 1 deletion(-)
1249
1250diff --git a/README.md b/README.md
1251index 88f126184c..38da593a60 100644
1252--- a/README.md
1253+++ b/README.md
1254@@ -3,7 +3,7 @@
1255 Git - fast, scalable, distributed revision control system
1256 =========================================================
1257
1258-Git is a fast, scalable, distributed revision control system with an
1259+Git is a fast, scalable, and distributed revision control system with an
1260 unusually rich command set that provides both high-level operations
1261 and full access to internals.
1262
1263--
12642.21.0.392.gf8f6787159e-goog
1265----
1266
5ef811ac 1267[[now-what]]
76644e32
ES
1268== My Patch Got Emailed - Now What?
1269
010447cf
JH
1270Please give reviewers enough time to process your initial patch before
1271sending an updated version. That is, resist the temptation to send a new
1272version immediately, because others may have already started reviewing
1273your initial version.
1274
1275While waiting for review comments, you may find mistakes in your initial
1276patch, or perhaps realize a different and better way to achieve the goal
1277of the patch. In this case you may communicate your findings to other
1278reviewers as follows:
1279
1280 - If the mistakes you found are minor, send a reply to your patch as if
1281 you were a reviewer and mention that you will fix them in an
1282 updated version.
1283
1284 - On the other hand, if you think you want to change the course so
1285 drastically that reviews on the initial patch would be a waste of
1286 time (for everyone involved), retract the patch immediately with
1287 a reply like "I am working on a much better approach, so please
1288 ignore this patch and wait for the updated version."
1289
1290Now, the above is a good practice if you sent your initial patch
1291prematurely without polish. But a better approach of course is to avoid
1292sending your patch prematurely in the first place.
1293
1294Please be considerate of the time needed by reviewers to examine each
1295new version of your patch. Rather than seeing the initial version right
1296now (followed by several "oops, I like this version better than the
1297previous one" patches over 2 days), reviewers would strongly prefer if a
1298single polished version came 2 days later instead, and that version with
1299fewer mistakes were the only one they would need to review.
1300
1301
76644e32
ES
1302[[reviewing]]
1303=== Responding to Reviews
1304
1305After a few days, you will hopefully receive a reply to your patchset with some
1306comments. Woohoo! Now you can get back to work.
1307
1308It's good manners to reply to each comment, notifying the reviewer that you have
a6d8d110 1309made the change suggested, feel the original is better, or that the comment
76644e32
ES
1310inspired you to do something a new way which is superior to both the original
1311and the suggested change. This way reviewers don't need to inspect your v2 to
1312figure out whether you implemented their comment or not.
1313
a6d8d110
JH
1314Reviewers may ask you about what you wrote in the patchset, either in
1315the proposed commit log message or in the changes themselves. You
1316should answer these questions in your response messages, but often the
1317reason why reviewers asked these questions to understand what you meant
1318to write is because your patchset needed clarification to be understood.
1319
1320Do not be satisfied by just answering their questions in your response
1321and hear them say that they now understand what you wanted to say.
1322Update your patches to clarify the points reviewers had trouble with,
1323and prepare your v2; the words you used to explain your v1 to answer
1324reviewers' questions may be useful thing to use. Your goal is to make
1325your v2 clear enough so that it becomes unnecessary for you to give the
1326same explanation to the next person who reads it.
1327
76644e32
ES
1328If you are going to push back on a comment, be polite and explain why you feel
1329your original is better; be prepared that the reviewer may still disagree with
1330you, and the rest of the community may weigh in on one side or the other. As
1331with all code reviews, it's important to keep an open mind to doing something a
1332different way than you originally planned; other reviewers have a different
1333perspective on the project than you do, and may be thinking of a valid side
1334effect which had not occurred to you. It is always okay to ask for clarification
1335if you aren't sure why a change was suggested, or what the reviewer is asking
1336you to do.
1337
1338Make sure your email client has a plaintext email mode and it is turned on; the
1339Git list rejects HTML email. Please also follow the mailing list etiquette
1340outlined in the
1341https://kernel.googlesource.com/pub/scm/git/git/+/todo/MaintNotes[Maintainer's
1342Note], which are similar to etiquette rules in most open source communities
1343surrounding bottom-posting and inline replies.
1344
1345When you're making changes to your code, it is cleanest - that is, the resulting
1346commits are easiest to look at - if you use `git rebase -i` (interactive
1347rebase). Take a look at this
1348https://www.oreilly.com/library/view/git-pocket-guide/9781449327507/ch10.html[overview]
1349from O'Reilly. The general idea is to modify each commit which requires changes;
1350this way, instead of having a patch A with a mistake, a patch B which was fine
1351and required no upstream reviews in v1, and a patch C which fixes patch A for
1352v2, you can just ship a v2 with a correct patch A and correct patch B. This is
1353changing history, but since it's local history which you haven't shared with
1354anyone, that is okay for now! (Later, it may not make sense to do this; take a
1355look at the section below this one for some context.)
1356
5ef811ac 1357[[after-approval]]
76644e32
ES
1358=== After Review Approval
1359
828197de
JS
1360The Git project has four integration branches: `seen`, `next`, `master`, and
1361`maint`. Your change will be placed into `seen` fairly early on by the maintainer
76644e32
ES
1362while it is still in the review process; from there, when it is ready for wider
1363testing, it will be merged into `next`. Plenty of early testers use `next` and
1364may report issues. Eventually, changes in `next` will make it to `master`,
1365which is typically considered stable. Finally, when a new release is cut,
1366`maint` is used to base bugfixes onto. As mentioned at the beginning of this
1367document, you can read `Documents/SubmittingPatches` for some more info about
1368the use of the various integration branches.
1369
1370Back to now: your code has been lauded by the upstream reviewers. It is perfect.
1371It is ready to be accepted. You don't need to do anything else; the maintainer
1372will merge your topic branch to `next` and life is good.
1373
1374However, if you discover it isn't so perfect after this point, you may need to
1375take some special steps depending on where you are in the process.
1376
1377If the maintainer has announced in the "What's cooking in git.git" email that
1378your topic is marked for `next` - that is, that they plan to merge it to `next`
1379but have not yet done so - you should send an email asking the maintainer to
1380wait a little longer: "I've sent v4 of my series and you marked it for `next`,
1381but I need to change this and that - please wait for v5 before you merge it."
1382
1383If the topic has already been merged to `next`, rather than modifying your
1384patches with `git rebase -i`, you should make further changes incrementally -
1385that is, with another commit, based on top of the maintainer's topic branch as
1386detailed in https://github.com/gitster/git. Your work is still in the same topic
1387but is now incremental, rather than a wholesale rewrite of the topic branch.
1388
1389The topic branches in the maintainer's GitHub are mirrored in GitGitGadget, so
1390if you're sending your reviews out that way, you should be sure to open your PR
1391against the appropriate GitGitGadget/Git branch.
1392
1393If you're using `git send-email`, you can use it the same way as before, but you
1394should generate your diffs from `<topic>..<mybranch>` and base your work on
1395`<topic>` instead of `master`.