summaryrefslogtreecommitdiff
path: root/Documentation/everyday.txt
diff options
context:
space:
mode:
authorSergei Organov <osv@javad.com>2007-11-02 17:12:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-02 22:38:24 (GMT)
commitd336fc096b450c01502e99fa17583d5bebf9aa24 (patch)
treef10f72de51bc1e4647ba95860b12d9abaca273ea /Documentation/everyday.txt
parent7b55eee77e11da162fb197a79b72af375ed0f1d0 (diff)
downloadgit-d336fc096b450c01502e99fa17583d5bebf9aa24.zip
git-d336fc096b450c01502e99fa17583d5bebf9aa24.tar.gz
git-d336fc096b450c01502e99fa17583d5bebf9aa24.tar.bz2
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 'Documentation/everyday.txt')
-rw-r--r--Documentation/everyday.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/everyday.txt b/Documentation/everyday.txt
index 08c61b1..ce7c170 100644
--- a/Documentation/everyday.txt
+++ b/Documentation/everyday.txt
@@ -109,7 +109,7 @@ $ tar zxf frotz.tar.gz
$ cd frotz
$ git-init
$ git add . <1>
-$ git commit -m 'import of frotz source tree.'
+$ git commit -m "import of frotz source tree."
$ git tag v2.43 <2>
------------
+
@@ -300,7 +300,7 @@ $ git merge topic/one topic/two && git merge hold/linus <8>
$ git checkout maint
$ git cherry-pick master~4 <9>
$ compile/test
-$ git tag -s -m 'GIT 0.99.9x' v0.99.9x <10>
+$ git tag -s -m "GIT 0.99.9x" v0.99.9x <10>
$ git fetch ko && git show-branch master maint 'tags/ko-*' <11>
$ git push ko <12>
$ git push ko v0.99.9x <13>