Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@citi.umich.edu>2007-03-11 06:00:12 +0300
committerJ. Bruce Fields <bfields@citi.umich.edu>2007-03-11 07:05:01 +0300
commited4eb0d8f3560c20a3b8eefefdcaae4d864743c6 (patch)
treeaf356d5e911339e6020a23e5152707e433b9abcf /Documentation
parentfabbd8f6ca610a570d7bfcbbfc80bb0e03247b2a (diff)
user-manual: fix missing colon in git-show example
There should be a colon in this git-show example. Cc: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: "J. Bruce Fields" <bfields@citi.umich.edu>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/user-manual.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt
index f4ea967191..1e151b4d29 100644
--- a/Documentation/user-manual.txt
+++ b/Documentation/user-manual.txt
@@ -1431,7 +1431,7 @@ modifying the working directory, you can do that with
gitlink:git-show[1]:
-------------------------------------------------
-$ git show HEAD^ path/to/file
+$ git show HEAD^:path/to/file
-------------------------------------------------
which will display the given version of the file.