On Fri, Oct 03, 2008 at 07:09:52AM -0700, Shawn O. Pearce wrote: > I think the hard part now is to get the user docs updated to reflect > the new format. We need to get that done before this can merge > over to master. Grepping only turned up the two instances that Andreas had changed for his patch, so I think that is probably it. Here's the patch. -- >8 -- tutorial: update output of git commit Commit c85db254 changed the format of the message produced by "git commit" when creating a commit. This patch updates the example session in the tutorial to the new format. It also adds in the missing diffstat summary lines, which should have been added long ago. Signed-off-by: Jeff King <peff@xxxxxxxx> --- Documentation/gittutorial-2.txt | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation/gittutorial-2.txt b/Documentation/gittutorial-2.txt index 8484e7a..bab0f34 100644 --- a/Documentation/gittutorial-2.txt +++ b/Documentation/gittutorial-2.txt @@ -32,11 +32,13 @@ Initialized empty Git repository in .git/ $ echo 'hello world' > file.txt $ git add . $ git commit -a -m "initial commit" -Created root-commit 54196cc (initial commit) on master +[master (root-commit)] created 54196cc: "initial commit" + 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 file.txt $ echo 'hello world!' >file.txt $ git commit -a -m "add emphasis" -Created c4d59f3 (add emphasis) on master +[master] created c4d59f3: "add emphasis" + 1 files changed, 1 insertions(+), 1 deletions(-) ------------------------------------------------ What are the 7 digits of hex that git responded to the commit with? -- 1.6.0.2.636.gaa7b -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html