summaryrefslogtreecommitdiffstats
path: root/Documentation/git-reset.txt
diff options
context:
space:
mode:
authorSergei Organov <osv@javad.com>2007-11-02 18:12:57 +0100
committerJunio C Hamano <gitster@pobox.com>2007-11-02 23:38:24 +0100
commitd336fc096b450c01502e99fa17583d5bebf9aa24 (patch)
treef10f72de51bc1e4647ba95860b12d9abaca273ea /Documentation/git-reset.txt
parentRemove escaping of '|' in manpage option sections (diff)
downloadgit-d336fc096b450c01502e99fa17583d5bebf9aa24.tar.xz
git-d336fc096b450c01502e99fa17583d5bebf9aa24.zip
Documentation: quote commit messages consistently.
Documentation quotes commit messages 14 times with double-quotes, and 7 times with single-quotes. The patch turns everything to double-quotes. A nice side effect is that documentation becomes more Windoze-friendly as AFAIK single quotes won't work there. Signed-off-by: Sergei Organov <osv@javad.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r--Documentation/git-reset.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-reset.txt b/Documentation/git-reset.txt
index 15e3aca9a1..87afa6f8da 100644
--- a/Documentation/git-reset.txt
+++ b/Documentation/git-reset.txt
@@ -157,7 +157,7 @@ need to get to the other branch for a quick bugfix.
------------
$ git checkout feature ;# you were working in "feature" branch and
$ work work work ;# got interrupted
-$ git commit -a -m 'snapshot WIP' <1>
+$ git commit -a -m "snapshot WIP" <1>
$ git checkout master
$ fix fix fix
$ git commit ;# commit with real log