summaryrefslogtreecommitdiffstats
path: root/gittutorial-2.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2009-01-21 10:51:14 +0000
committerJunio C Hamano <junio@hera.kernel.org>2009-01-21 10:51:14 +0000
commitbc4852e8d68ccfc18b8d3c0cf4c3d602917d454a (patch)
treeeefa8584a92795e6fc18d3e2fba7ef5f8c0219ce /gittutorial-2.txt
parente24056c70e1f1c13c7599780af86b5e95f0109ae (diff)
downloadgit-htmldocs-bc4852e8d68ccfc18b8d3c0cf4c3d602917d454a.tar.gz
Autogenerated HTML docs for v1.6.1-230-gf873d
Diffstat (limited to 'gittutorial-2.txt')
-rw-r--r--gittutorial-2.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/gittutorial-2.txt b/gittutorial-2.txt
index a057b50b2..dc8fc3a18 100644
--- a/gittutorial-2.txt
+++ b/gittutorial-2.txt
@@ -32,12 +32,12 @@ Initialized empty Git repository in .git/
$ echo 'hello world' > file.txt
$ git add .
$ git commit -a -m "initial commit"
-[master (root-commit)] created 54196cc: "initial commit"
+[master (root-commit) 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"
-[master] created c4d59f3: "add emphasis"
+[master c4d59f3] add emphasis
1 files changed, 1 insertions(+), 1 deletions(-)
------------------------------------------------