git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Junio C Hamano <gitster@pobox.com>
To: "Emily Shaffer via GitGitGadget" <gitgitgadget@gmail.com>
Cc: git@vger.kernel.org, Emily Shaffer <emilyshaffer@google.com>
Subject: Re: [PATCH v2 1/1] documentation: add lab for first contribution
Date: Wed, 17 Apr 2019 14:32:23 +0900	[thread overview]
Message-ID: <xmqqbm15kxi0.fsf@gitster-ct.c.googlers.com> (raw)
In-Reply-To: <71d5ab539c8b47155f6a3c92e26c9224d8214298.1555446372.git.gitgitgadget@gmail.com> (Emily Shaffer via GitGitGadget's message of "Tue, 16 Apr 2019 13:26:14 -0700 (PDT)")

"Emily Shaffer via GitGitGadget" <gitgitgadget@gmail.com> writes:

> Subject: Re: [PATCH v2 1/1] documentation: add lab for first contribution
> From: Emily Shaffer <emilyshaffer@google.com>
>
> This code lab covers how to add a new command to Git and, in the
> process, everything from cloning git/git to getting reviewed on the mail

"lab"?  I thought we settled on "tutorial".  Also the place we are
having conversation we call "mailing list", I think.

> diff --git a/Documentation/Makefile b/Documentation/Makefile
> index 26a2342bea..af303c2419 100644
> --- a/Documentation/Makefile
> +++ b/Documentation/Makefile
> @@ -74,6 +74,7 @@ API_DOCS = $(patsubst %.txt,%,$(filter-out technical/api-index-skel.txt technica
>  SP_ARTICLES += $(API_DOCS)
>  
>  TECH_DOCS += SubmittingPatches
> +TECH_DOCS += MyFirstContribution
>  TECH_DOCS += technical/hash-function-transition
>  TECH_DOCS += technical/http-protocol
>  TECH_DOCS += technical/index-format
> @@ -338,6 +339,7 @@ clean:
>  	$(RM) howto-index.txt howto/*.html doc.dep
>  	$(RM) technical/*.html technical/api-index.txt
>  	$(RM) SubmittingPatches.txt
> +	$(RM) MyFirstContribution.txt
>  	$(RM) $(cmds_txt) $(mergetools_txt) *.made
>  	$(RM) manpage-base-url.xsl
>  
> @@ -379,6 +381,9 @@ $(patsubst %,%.html,$(API_DOCS) technical/api-index $(TECH_DOCS)): %.html : %.tx
>  SubmittingPatches.txt: SubmittingPatches
>  	$(QUIET_GEN) cp $< $@
>  
> +MyFirstContribution.txt: MyFirstContribution
> +	$(QUIET_GEN) cp $< $@

Hmph.

Unlike SubmittingPatches that has known as that specific filename
for a long time before we added to the *.txt -> *.html toolchain
(hence people may look for it without the *.txt suffix), I do not
immediately see why the source of this new tutorial needs a variant
without the suffix.  Is there a reason why this new file cannot be
created as Documentaiton/MyFirstContribution.txt that I am missing?

> +== Getting Started
> +
> +=== Pull the Git codebase
> +
> +Git is mirrored in a number of locations. https://git-scm.com/downloads
> +suggests the best place to clone from is GitHub.

"suggests that one of the best places ..."?

> +Let's start by making a development branch to work on our changes. Per
> +`Documentation/SubmittingPatches`, since a brand new command is a new feature,
> +it's fine to base your work on `master`. However, in the future for bugfixes,
> +etc., you should check that doc and base it on the appropriate branch.

Avoid unnecessary abbreviation; s/doc/document/.  Same for "lab", if
we are to call this "codelab" instead of "tutorial".  I won't repeat
this for brevity, but I see many instances of them.

> +For the purposes of this doc, we will base all our work on the `master` branch
> +of the upstream project. Create the `psuh` branch you will use for development
> +like so:
> +
> +----
> +git checkout -b psuh origin/master
> +----

	----
	$ git checkout -b psuh origin/master
	----

I think both of our existing tutorials spell out the shell prompt to
clarify what these lines are.  It would especially help in this
document, where you have other monospaced display material that are
not commands to be typed but code snippets.

> +
> +We'll make a number of commits here in order to demonstrate how to send many
> +patches up for review simultaneously.

I'd write "a topic with multiple patches" instead of "many
patches".  The point being that we are not sending a group of
unrelated changes, but are focusing on a theme.

> +== Code It Up!
> +
> +NOTE: A reference implementation can be found at
> +https://github.com/nasamuffin/git/tree/psuh.
> +
> +=== Adding a new command
> +
> +Lots of the main useful commands are written as builtins, which means they are

I'd say "the subcommands" without "main" or "useful".  There are
fringe subcommands that are implemented as built-in, there are main
useful commands that are not built-in, and "useful"-ness is in the
eyes of beholder.

> +implemented in C and compiled into the main `git` executable. Since they are so
> +common, it is a useful exercise to implement `git psuh` as a builtin subcommand.

What does "they" refer to in this sentence?  Exiting built-in
commands are so common?  In what way are they "common"?  They are
commonly used?  That is not relevant in the choice of making 'git
psuh' a built-in or a standalone.

Adding a new built-in command, if it were common, may be a good
target for illustration.  But it is not all that common.

Adding a built-in command requires you to understand the start-up
sequence to the exit status, and serves as a good end-to-end
exercise, if this tutorial's main aim is to give a tour of the
codebase and its internal API.  An almost no-op "git psuh" built-in
is small enough to serve as a good end-to-end exercise, without
requiring the author to know much about the internal API, and would
be a good material to show how the contributor, the reviewers and
the maintainer work together to add it to the system.

So "they are so common" is probably not a good excuse, even though
using `git psuh` may be a good exercise for the purpose of this
tutorial.

	Since adding an almost no-op built-in command is relatively
	simple, it is a good material to demonstrate how you as an
	individual contributor, the reviewers and the maintainer
	work together to integrate such a change to the system.

perhaps?

> +Built-in subcommands are typically implemented in a function named "cmd_"
> +followed by the name of the subcommand, in a source file named after the
> +subcommand and contained within `builtin/`. So it makes sense to implement your
> +command in `builtin/psuh.c`. Create that file, and within, write the entry point

s/within/& it/ perhaps?

> +for your command in a function matching the style and signature:
> +
> +----
> +int cmd_psuh(int argc, const char **argv, const char *prefix)
> +----
> +
> +We'll also need to add the extern declaration of psuh; open up `builtin.h`,
> +find the declaration for cmd_push, and add a new line for psuh:

s/:/ immediately before it, to keep the declarations sorted&/ perhaps.

> +The options are documented in `builtin.h` under "Adding a new built-in." Since
> +we hope to print some data about the user's current workspace context later,
> +we need a Git directory, so choose `RUN_SETUP` as your only option.
> +
> +Go ahead and build again. You should see a clean build, so let's kick the tires
> +and see if it works. There's a binary you can use to test with in
> +`./bin-wrappers`.

... in `bin-wrappers` directory.

> +Consider something like the following as your commit message. Start the commit

I'd drop the first sentence, and instead say "You'll see something
like this in your editor" just before the sample.

> +with a 50-column or less subject line, including the name of the component
> +you're working on. Remember to be explicit and provide the "Why" of your commit,

s/your commit/your change/;

> +especially if it couldn't easily be understood from your diff. When editing
> +your commit message, don't remove the Signed-off-by line which was added by `-s`
> +above.
> +
> +----
> +psuh: add a new built-in by popular demand

I probably would not even say "new" (what you add did not exist
before, so it is redundant) and spend the bits elsewhere (perhaps by
spelling out "built-in command").

> +
> +Internal metrics indicate this is a command many users expect to be
> +present. So here's an implementation to help drive customer
> +satisfaction and engagement: a pony which doubtfully greets the user,
> +or, a Pony Saying "Um, Hello" (PSUH).
> +
> +This commit message is intentionally formatted to 72 columns per line,
> +starts with a single line as "commit message subject" that is written as
> +if to command the codebase to do something (add this, teach a command
> +that). The body of the message is designed to add information about the
> +commit that is not readily deduced from reading the associated diff,
> +such as answering the question "why?".

If you can actually rephrase to make the above into a rectangular
text with 72-columns wide, that would be perfect ;-)  I certainly
would not insist.

> +
> +Signed-off-by: A U Thor <author@example.com>
> +----
> +
> +Go ahead and inspect your new commit with `git show`. "psuh:" indicates you
> +have modified mainly the `psuh` command. The subject line gives readers an idea
> +of what you've changed. The signed-off line (-s) indicates that you agree to

Either "sign-off line" or "signed-off-by line".

> +the Developer's Certificate of Origin 1.1 (see the SubmittingPatches [[dco]]
> +header). If you wish to add some context to your change, go ahead with
> +`git commit --amend`.
> +
> +For the remainder of the tutorial, the subject line only will be listed for the
> +sake of brevity. However, fully-fleshed example commit messages are available
> +on the reference implementation linked at the top of this document.

Good.

> +=== Implementation
> +
> +It's probably useful to do at least something besides print out a string. Let's

s/print/&ing/

> +start by having a look at everything we get.
> +
> +Modify your `cmd_psuh` implementation to dump the args you're passed:
> +
> +----
> +	printf(Q_("Your args (there is %i):\n",
> +		  "Your args (there are %i):\n",
> +		  argc),
> +	       argc);
> +	for (int i = 0; i < argc; i++) {

I do not think we use this particular C99; define 'int i' at the
beginning of the function, not for the loop..

> +		printf("%s\n", argv[i]);

Personal preference: printf("%d: %s\n", i, argv[i]);

> +	}
> +	printf(_("Your prefix:\n%s\n"), prefix);

I think prefix can be NULL.  Not just in a bare repository but most
notably at the top-level of the working tree.

> +----
> +
> +As you may expect, there's pretty much just whatever we give on the command
> +line, including the name of our command. (If `prefix` is empty for you, try
> +`cd Documentation/ && ../bin-wrappers/git/ psuh`). That's not so helpful. So
> +what other context can we get?
> +
> +Add a line to `#include "config.h"`. Then, add the following bits:
> +
> +----
> +const char *cfg_name;

Not file-scope static?

Ah, adding to the function's set of local variables?  Explicitly say
so when you instruct "add the following bits", e.g. "... to the
function body".

Indenting the material a bit, the same way as you have the previous
code block, may also help.

> +...
> +
> +git_config(git_default_config, NULL)
> +if (git_config_get_string_const("user.name", &cfg_name) > 0)
> +{
> +	printf(_("No name is found in config\n"));
> +}
> +else
> +{
> +	printf(_("Your name: %s\n"), cfg_name);
> +}
> +----
> +
> +git_config(...) will grab the configuration from config files known to Git and
> +apply standard precedence rules. git_config_get_string_const(...) will look up
> +a specific key ("user.name") and give you the value. There are a number of
> +single-key lookup functions like this one; you can see them all (and more info
> +about how to use git_config()) in `Documentation/technical/api-config.txt`.
> +
> +You should see that the name printed matches the one you see when you run:
> +
> +----
> +git config --get user.name
> +----

	----
	$ git config --get user.name
	----

(I won't repeat this for brevity).

> +Great! Now we know how to check for values in the git config. Let's commit this
> +too, so we don't lose our progress.
> +
> +----
> +git add builtin/psuh.c
> +git commit -sm "psuh: show parameters & config opts"
> +----
> +

For this first "abbreviated" example, it probably is worth repeating

    (Again, the above is merely for brevity of the tutorial---in a
    real project, do not use "commit -m" but use the editor and
    write a real message).

immediately after the example.

> +Still, it'd be nice to know what the user's working context is like. Let's see
> +if we can print the name of the user's current branch. We can cheat off of the
> +`git status` implementation; the printer is located in `wt-status.c` and we can
> +see that the branch is held in a `struct wt_status`.  `wt_status_print()` gets
> +invoked by `cmd_status()` in `builtin/commit.c`. Looking at that implementation
> +we see the status config being populated like so:
> +
> +----
> +status_init_config(&s, git_status_config);
> +----
> +
> +But as we drill down, we can find that `status_init_config()` wraps a call
> +to `git_config()`. Let's modify the code we wrote in the previous commit.
> +
> +----
> +#include "wt-status.h"
> +
> +...
> +
> +// Add a wt_status to fill at the top.

We do not use // comments.  I think this actually is taking
advangage of the fact and giving a meta-comment that would not enter
into the student's code, but if that is what is going on, perhaps
tell it explicitly upfront to help readers, perhaps like:

	Throughout this tutorial, you may see in-code comment that
	uses the double-dash `// comment`.  These are not to be used
	in the Git codebase---instead we are giving readers a meta
	comment to explain what is going on in the example.

or something.

> +struct wt_status status;
> +
> +...
> +
> +// modify the prior code:
> +wt_status_prepare(the_repository, &status);
> +git_config(git_default_config, &status);
> +
> +...
> +
> +printf(_("Your current branch: %s\n"), status.branch);
> +----

The same "is this done inside the function?  If so say so and
indent" comment applies to this part.

> +Run it again. Check it out - here's the (verbose) name of your current branch!
> +
> +Let's commit this as well.
> +
> +----
> +git commit -sm "psuh: print the current branch"
> +----
> +
> +Now let's see if we can get some info about a specific commit.
> +
> +Luckily, there are some helpers for us here. `commit.h` has a function called
> +`lookup_commit_reference_by_name` to which we can simply provide a hardcoded
> +string; `pretty.h` has an extremely handy `pp_commit_easy()` call which doesn't
> +require a full format object to be passed.
> +
> +Add the following:
> +
> +----
> +#include "commit.h"
> +#include "pretty.h"
> +
> +...
> +
> +struct commit *c = NULL;
> +struct strbuf commitline;
> +strbuf_init(&commitline, 0);

	struct strbuf commitline = STRBUF_INIT

perhaps?

> +
> +...
> +
> +c = lookup_commit_reference_by_name("origin/master");
> +
> +if (c != NULL)
> +{

'{' never comes on its own line unless it is for the outermost block
of the function body.

> +	pp_commit_easy(CMIT_FMT_ONELINE, c, &commitline);
> +	printf(_("Current commit: %s\n"), commitline.buf);
> +}
> +----
> +
> +The `struct strbuf` provides some safety belts to your basic `char*`, one of
> +which is a length member to prevent buffer overruns. It needs to be initialized
> +nicely with `strbuf_init`. Keep it in mind when you need to pass around `char*`.
> +
> +`lookup_commit_reference_by_name` resolves the name you pass it, so you can play
> +with the value there and see what kind of things you can come up with.
> +
> +`pp_commit_easy` is a convenience wrapper in `pretty.h` that takes a single
> +format enum shorthand, rather than an entire format struct. It then prints the
> +commit according to that shorthand. These are similar to the formats available
> +with `--pretty=FOO` in many Git commands.

At least the first mention of "print" that describes pp_* family of
functions should use the word "pretty-print"; that would implicitly
explain why the functions are called pp_*.

	It then pretty-prints the commit ...

> +=== Adding documentation
> +
> +Awesome! You've got a fantastic new command that you're ready to share with the
> +community. But hang on just a minute - this isn't very user-friendly. Run the
> +following:
> +
> +----
> +./bin-wrappers/git help psuh
> +----
> +
> +Your new command is undocumented! Let's fix that.
> +
> +Take a look at `Documentation/git-*.txt`. These are the manpages for the
> +subcommands that Git knows about. You can open these up and take a look to get
> +acquainted with the format, but then go ahead and make a new file
> +`Documentation/git-psuh.txt`. Like with most of the documentation in the Git
> +project, help pages are written with AsciiDoc (see CodingGuidelines, "Writing
> +Documentation" section). Use the following template to fill out your own
> +manpage:
> +
> +// Surprisingly difficult to embed AsciiDoc source within AsciiDoc.

;-)

> +The most important pieces of this to note are the file header, underlined by =,
> +the NAME section, and the SYNOPSIS, which would normally contain the grammar if
> +your command took arguments.  Feel free to add new headers if you wish.

What do you mean by the last sentence, especially by "new headers"?

We do not want develoeprs to feel free to add random new sections to
the manpage, if that is what you mean.  Rather we should encourage
them to stick to the established structure, so that all manpages
look the same and readers would know to which section to jump to to
find necessary piece of information.

> +
> +Now that you've written your manpage, you'll need to build it explicitly. We
> +convert your AsciiDoc to troff which is man-readable like so:
> +
> +----
> +make all doc
> +man Documentation/git-psuh.1
> +----

Hmph.  I didn't know you can do that without "-l" (local) option.
Perhaps with "-l" spelled out, it might be more portable but I
dunno.

> +Go ahead and commit your new documentation change.

> +=== Adding usage text
> +
> +Try and run `./bin-wrappers/git psuh -h`. Your command should crash at the end.
> +That's because `-h` is a special case which your command should handle by
> +printing usage.

This is a tangent but an important one.  I wonder we can turn the
"crash" into a more graceful error exit?  It is important because a
fix like that will force us to update this sentence.

> +Take a look at `Documentation/technical/api-parse-options.txt`. This is a handy
> +tool for pulling out options you need to be able to handle, and it takes a
> +usage string.
> +
> +In order to use it, we'll need to prepare a NULL-terminated usage string and a
> +builtin_psuh_options array. Add a line to `#include "parse-options.h"`.

Consistently quote variables and functions `like so`.  The array
variable above, and also ...

> +Then, within your cmd_psuh implementation, we can declare and populate our

... `cmd_psuh()` here, too (I am also suggesting to add () as a sign
that the identifier talks about a function).

> +`option` struct. Ours is pretty boring but you can add more to it if you like:

s/you can more to it if you like/we will add more in a later step/ perhaps?
Or am I expecting too much?  Use of parse_options() is an important skill
required to write a modern Git subcommand.

> +----
> +	struct option options[] = {
> +		OPT_END()
> +	};
> +----
> +
> +Finally, before you print your args and prefix, add the call to
> +`parse-options()`:
> +
> +----
> +	argc = parse_options(argc, argv, prefix, options, psuh_usage, 0);
> +----
> +
> +This call will modify your `argv` and `options` parameters. It will strip
> +options you specified in `options` from `argv` and populate them in `options`
> +instead, if they were provided.

That is a misleading description.

I am sure that in the right mental model used by users of the
parse_options API, argv[] gets modified, but options[] array is
constant.  It is just some entries in options[] have a pointer to
locations they (i.e. the entries) request parse_options() call to
update.  The options[] array, e.g. the entries that record these
variables to be updated, stay the same.

> Be sure to replace your `argc` with the result
> +from `parse_options`, or you will be confused if you try to parse argv later.
> +
> +It's worth noting the special argument `--`. As you may be aware, many Unix
> +commands use `--` to indicate "end of named parameters" - all parameters after
> +the `--` are interpreted merely as positional arguments. (This can be handy if
> +you want to pass as a parameter something which would usually be interpreted as
> +a flag.) `parse_options` will terminate parsing when it reaches `--` and give
> +you the rest of the options afterwards, untouched.
> +
> +Build again. Now, when you run with -h, you should see your usage printed and
> +your command terminated before anything else interesting happens. Great!

If you had a separate section (because the first use in the tutorial
of parse_options() that uses an empty options[] array is there only
to use the psuh_usage usage string) that teaches the use of command
line option, most of the above will move to that new section, and
that may help making the result into easier-to-digest pieces.  How
about adding "--user=<name>" command line option, which would override
the user.name config setting your command is already reading at this
step in the sequence?

> +
> +Go ahead and commit this one, too.
> +
> +== Testing
> +
> +It's important to test your code - even for a little toy command like this one.
> +Moreover, your patch won't be accepted into the Git tree without tests to
> +demonstrate that it does what it's supposed to do. So let's add some tests.

Tests are *NOT* added to demonstrate that it does what it's supposed
to do.

You add a test because you care about an externally visible
behaviour you defined will *not* get broken by later changes
(probably by others), by illustrating the behaviour of the feature
and comparing it with what is expected.

Secondary reason to add a test is to demonstrate that a feature does
*not* kick in when it is not supposed to, but "Git contribution 101"
students are probably not ready for that one.

> +Related reading: `t/README`
> +
> +=== Overview of Testing Structure
> +
> +The tests in Git live in t/ and are named with a 4-decimal digit, according to
> +the schema shown in the Naming Tests section of `t/README`.
> +
> +=== Writing Your Test
> +
> +Since this a toy command, let's go ahead and name the test with t9999. However,
> +as many of the family/subcmd combinations are full, best practice seems to be
> +to find a command close enough to the one you've added and share its naming
> +space.
> +
> +Create your test script and mark it executable:
> +
> +----
> +touch t/t9999-psuh-codelab.sh
> +chmod +x t/t9999-psuh-codelab.sh
> +----
> +
> +Begin with the header as so (see
> +"Writing Tests" and "Source 'test-lib.sh'" in `t/README`):
> +
> +----
> +#!/bin/sh
> +
> +test_description='git-psuh test
> +
> +This test runs git-psuh and makes sure it does not crash.'
> +
> +. ./test-lib.sh
> +----
> +
> +Tests are framed inside of a `test_expect_success` in order to output TAP
> +formatted results. Begin your first test and set up the repo to test in:

Hmmm, I doubt the wisdom in that.  Almost all our tests can work in
the default test repository.  Why should we show the exception to
those who are beginning their first step with "hello world", risking
the use of "rm -rf"?

> +=== Sending a PR to GitGitGadget
> +
> +GitGitGadget is a tool created by Johannes Schindelin to make life as a Git
> +contributor easier for those used to the GitHub PR workflow. It allows
> +contributors to open pull requests against its mirror of the Git project, and
> +does some magic to turn the PR into a set of emails and sent them out for you.

s/sent them/send them/

> +== Sending Patches with `git send-email`
> +
> +There are a couple reasons you may not want to use GitGitGadget, such as needing
> +to send an RFC patch, wanting to check your work before mailing, or not having a
> +GitHub account. Luckily, you can use Git to mail your patches instead!

Hmph, just for my education, is there anything in GGG that makes it
unsuitable for an RFC/WIP?  It also is not clear to me what it does
have to do with the ability to "check your work before mailing"; the
proposed log message and the patch text can be polished even before
you push to your GitHub repository, so ...

> +=== Preparing initial patchset
> +
> +Sending emails with Git is a two-part process; before you can prepare the emails
> +themselves, you'll need to prepare the patches. Luckily, this is pretty simple:
> +
> +----
> +git format-patch -o psuh/ master..psuh
> +----
> +
> +The `-o psuh/` parameter tells `format-patch` to place the patch files into a
> +directory. This is useful because `git send-email` can take a directory and
> +send out all the patches from there.

I'd rather not recommend the "send the whole directory contents"
feature.  Instead, it is preferrable to do

	git send-email psuh/0*.patch
	git send-email psuh/v2-*.patch

etc., using the same psuh/ directory as the output redirectory
throughout the iterations.  That practice would primarily help you
write the cover letters for later iterations while peeking at the
ones you wrote for earlier iterations.

> +`master..psuh` tells `format-patch` to generate patches for the difference
> +between `master` and `psuh`. It will make one patch file per commit. After you
> +run, you can go have a look at each of the patches with your favorite text
> +editor and make sure everything looks alright; however, it's not recommended to
> +make code fixups via the patch file. It's a better idea to make the change the
> +normal way using `git rebase -i` or by adding a new commit than by modifying a
> +patch.
> +
> +Check and make sure that your patches exist in the directory you specified -
> +you're nearly ready to send out your review!

OK.  I'll suggest using --cover-letter at this step, though.

> +=== Preparing email
> +
> +In addition to an email per patch, the Git community also expects your patches
> +to come with a cover letter, typically with a subject line [PATCH 0/x] (where
> +x is the number of patches you're sending).  You'll need to add some extra
> +parameters when you invoke `git send-email` to add the cover letter.

I am going to suggest getting rid of mention of the cover letter out
of this section, and move it to the previous section.  Regardless of
where the cover-letter is covered, I think we would want to say that
a single-patch topic typically do not need a cover.

> +----
> +git send-email \
> +	--to=target@server.tld \
> +	--from=me@server.tld \
> +	--subject="[PATCH 0/7] adding the 'psuh' command" \
> +	--compose \
> +	psuh/
> +----

About this "--compose" thing later.  In short, I'd rather see the
contributor prepare the cover next to the patch files when they run
format-patch.

> +
> +The `--to` and `--from` fields are pretty obvious. `--subject` should indicate
> +that it's a cover letter with the [PATCH 0/x] tag (check how many patches you
> +are about to send so you can indicate the size of the thread correctly).
> +`--compose` indicates that you want to open an editor to write the cover letter
> + ...
> +The argument to `--stat` bounds the column width of the output, which is handy
> +as emails to Git shouldn't exceed 72 columns of width.

Most of the above will become unnecessary if you tell format-patch
to give you the cover template, I think.

> +Here's an example of a cover letter for `git psuh`:
> +
> +----
> +Our internal metrics indicate widespread interest in the command
> +git-psuh - that is, many users are trying to use it, but finding it is
> +unavailable, using some unknown workaround instead.
> +
> +The following handful of patches add the psuh command and implement some
> +handy features on top of it.
> +
> +This patchset is part of the MyFirstContribution codelab and should not
> +be merged.
> +
> + Documentation/git-psuh.txt | 40 +++++++++++++++++++
> + Makefile                   |  1 +
> + builtin.h                  |  1 +
> + builtin/psuh.c             | 78 ++++++++++++++++++++++++++++++++++++++
> + git.c                      |  1 +
> + t/t9999-psuh-codelab.sh    | 12 ++++++
> + 6 files changed, 133 insertions(+)
> +----
> +
> +NOTE: When you've got a real change to send, you'll use `git@vger.kernel.org`
> +in the `--to` field. For now, though, don't spam the list with the codelab -
> +send it to yourself and check if it looks right.
> +
> +=== Sending email
> +
> +After you finish running the command above and editing your cover letter, you
> +will be presented with an interactive prompt for each patch that's about to go
> +out. This gives you one last chance to edit or quit sending something (but
> +again, don't edit code this way). Once you press `y` or `a` at these prompts
> +your emails will go out!

I have a moderate aversion against the workflow to use the editor
inside "git send-email" invocation.  The prompting that urges "now
do this next" tends to make haste that is wastful.

Your example at least prepares the patches in a separate step, so it
is a bit better than running format-patch from within the send-email
command, which is a small consolation but still...

I'd rather see people trained to use "format-patch -o <topic>" to
save the patch files and the cover letter template in a directory
[*1*], which will give them a chance to write the cover letter in a
separate editor session, and send the result out with a separate
"git send-email <topic>/*.patch" or "git send-email <topic>/v2-*.patch"
invocations, *AFTER* they have a chance to sleep on it.

	Side note. *1* ... and keep it throughout iterations, so
	"format-patch -v2 -o" will name the same output directory,
	which will let you reuse material in the cover letter for
	earlier iterations when you write the cover letter for the
	latest iteration).

> +
> +Awesome, now the community will drop everything and review your changes. (Just
> +kidding - be patient!)
> +
> +=== Applying Changes

I am wondering if we want to retitle this to "responding to reviews".

> +Once you do have some review comments, you should make changes if necessary, or
> +push back on the changes by replying to the emails. (Make sure your mail client

Responding that you understood what was suggested and explaining the
reason why you do not take the suggestion (either you think your
original is better for reason X, or you thought of a solution even
better than your original or what was suggested) is of course good.
But I often see people who do not respond when taking what was
suggested and jump directly to sending the new iteration, which I
think should be strongly discouraged.

It is a better idea to respond to review comments whether you would
take or reject the suggested changes.  Reviewers are busy, and when
you silently take the suggestions and send v2 without responding to
reviews on your v1, those who gave you valuable input are forced to
read your v2 to see what you did to their suggestions.

> +has a plaintext email mode; the Git list rejects HTML email.) Please also follow
> +the mailing list etiquette outlined in the 
> +https://kernel.googlesource.com/pub/scm/git/git/+/todo/MaintNotes[Maintainer's
> +Note], which are similar to etiquette rules in most open source communities
> +surrounding bottom-posting and inline replies.
> +
> +////
> +TODO - mail list etiquette
> +////
> +
> +You should apply changes using interactive rebase, or by adding new commits if
> +the changes seem to require it.
> +
> +NOTE: Interactive rebase can be tricky; check out this handy
> +https://www.oreilly.com/library/view/git-pocket-guide/9781449327507/ch10.html
> +[overview] from O'Reilly.
> +
> +=== Sending v2
> +
> +When you're ready with the next iteration of your patch, the process is pretty
> +much the same, with a few differences:
> +
> +* When you run `format-patch`, include the argument `-v2` to add a "v2" tag to
> +the subject lins given.

I think "lins" is a typo for "line", but I am not sure what "the
subject line given" wants to say.

    ... include the argument `-v2`.  This marks the patches as the
    second iteration by prefixing their subject with "[PATCH v2]"
    instead of "[PATCH]".

perhaps?  I dunno.

> +* When you run `send-email`, include the argument `--in-reply-to=<message-id>`
> +with the Message-Id of the cover letter of the previous version. (You can find
> +that Message-Id on https://public-inbox.org/git/.) Also, change the subject line
> +on your cover letter to include "v2" to match the subjects of your patches.
> +
> +When it's time for v3 or beyond, simply change the number above, but make sure
> +your v2 cover letter is in reply to your v1 cover letter, and your v3 cover
> +letter is in reply to your v2 cover letter, and so on.

A single-patch topic typically should not have a cover.  Saying "the
first message of the previous round" instead of "the cover letter of
the previous version" would cover the case as well as a multi-patch
series with a cover letter.

> +== Now What?
> +
> +The Git project has four integration branches: `pu`, `next`, `master`, and
> +`maint`. Your change will be placed into `pu` fairly early on by the maintainer
> +while it is still in the review process; from there, when it is ready for wider
> +testing, it will be merged into `next`. Plenty of early testers use `next` and
> +may report issues. Eventually, changes in `next` will make it to `master`,
> +which is typically considered stable. Finally, when a new release is cut,
> +`maint` is used to base bugfixes onto. As mentioned at the beginning of this
> +document, you can read `Documents/SubmittingPatches` for some more info about
> +the use of the various integration branches.
> +
> +Back to now: your code has been lauded by the upstream reviewers. It is perfect.
> +It is ready to be accepted. You don't need to do anything else; the maintainer
> +will pull your patchset into `next` and life is good.

"pull" may not be a good verb to use in this project.  I would have
written "the maintainer will merge your topic branch to 'next'" if I
were doing this tutorial.

> +However, if it isn't so perfect, once it is in `next`, you can no longer modify
> +your commits in GitGitGadget or the email thread. Consider that review "closed

If it isn't so perfect, the first thing the contributor can do that
I as the maintainer woudl appreciate is to say "I've sent v4 of my
series and you marked it for 'next', but I'd still want to fix up
this and that in it; wait for v5 before merging" before it hits
'next'.

Of course, no single contributor or reviewers (myself included) is
perfect, so it often happens that further issues are noticed only
after a topic hits 'next'.  But it's not like the merge to 'next' is
point of no return---polishing can and do continue, but this time it
is done incrementally.

I'd replace "can no longer modify..." with something like "would
switch to updating the topic incrementally, instead of redoing the
topic wholesale".  You are still moving forward, helping to perfect
the same topic, as opposed to be working on a separate topic that
depends on it.

Thanks.

  reply	other threads:[~2019-04-17  5:32 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-11 18:32 [PATCH 0/1] documentation: add lab for first contribution Emily Shaffer via GitGitGadget
2019-04-11 18:32 ` [PATCH 1/1] " Emily Shaffer via GitGitGadget
2019-04-12  3:20   ` Junio C Hamano
2019-04-12 22:03     ` Emily Shaffer
2019-04-13  5:39       ` Junio C Hamano
2019-04-15 17:26         ` Emily Shaffer
2019-04-11 21:03 ` [PATCH 0/1] " Josh Steadmon
2019-04-12  2:35 ` Junio C Hamano
2019-04-12 22:58   ` Emily Shaffer
2019-04-16 20:26 ` [PATCH v2 " Emily Shaffer via GitGitGadget
2019-04-16 20:26   ` [PATCH v2 1/1] " Emily Shaffer via GitGitGadget
2019-04-17  5:32     ` Junio C Hamano [this message]
2019-04-17  8:07       ` Eric Sunshine
2019-04-18  0:05         ` Junio C Hamano
2019-04-17 23:16       ` Emily Shaffer
2019-04-16 21:13   ` [PATCH v2 0/1] " Emily Shaffer
2019-04-19 16:57   ` [PATCH v3] " Emily Shaffer
2019-04-21 10:52     ` Junio C Hamano
2019-04-22 22:27       ` Emily Shaffer
2019-04-23 19:34     ` [PATCH v4] documentation: add tutorial " Emily Shaffer
2019-04-30 18:59       ` Josh Steadmon
2019-05-02  0:57         ` Emily Shaffer
2019-05-03  2:11       ` Phil Hord
2019-05-07 19:05         ` Emily Shaffer
2019-05-06 22:28       ` Jonathan Tan
2019-05-07 19:59         ` Emily Shaffer
2019-05-07 20:32           ` Jonathan Tan
2019-05-08  2:45         ` Junio C Hamano
2019-05-07 21:30       ` [PATCH v5 0/2] documentation: add lab " Emily Shaffer
2019-05-07 21:30         ` [PATCH v5 1/2] documentation: add tutorial " Emily Shaffer
2019-05-07 23:25           ` Emily Shaffer
2019-05-08  3:46           ` Junio C Hamano
2019-05-08 18:58             ` Emily Shaffer
2019-05-08 19:53               ` Jonathan Tan
2019-05-07 21:30         ` [PATCH v5 2/2] documentation: add anchors to MyFirstContribution Emily Shaffer
2019-05-08  3:30         ` [PATCH v5 0/2] documentation: add lab for first contribution Junio C Hamano
2019-05-17 19:03         ` [PATCH v6 0/2] documentation: add tutorial " Emily Shaffer
2019-05-17 19:07           ` [PATCH v6 1/2] " Emily Shaffer
2019-05-26  7:48             ` Christian Couder
2019-05-29 20:09               ` Emily Shaffer
2019-10-18 16:40             ` SZEDER Gábor
2019-10-18 22:54               ` Emily Shaffer
2019-05-17 19:07           ` [PATCH v6 2/2] documentation: add anchors to MyFirstContribution Emily Shaffer
2019-05-29 20:18           ` [PATCH] doc: add some nit fixes " Emily Shaffer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=xmqqbm15kxi0.fsf@gitster-ct.c.googlers.com \
    --to=gitster@pobox.com \
    --cc=emilyshaffer@google.com \
    --cc=git@vger.kernel.org \
    --cc=gitgitgadget@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).