diff options
author | Steffen Prohaska <prohaska@zib.de> | 2007-05-26 21:16:27 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-28 23:54:35 -0700 |
commit | c78974f7b6a6a0e9f848907620b4361ee088f7c2 (patch) | |
tree | e811a967319018556a6acd9799f6efa8cb2c5add /Documentation/user-manual.txt | |
parent | dfab71cb923d031715ebc3cf9f920d801250c552 (diff) | |
download | git-c78974f7b6a6a0e9f848907620b4361ee088f7c2.tar.gz git-c78974f7b6a6a0e9f848907620b4361ee088f7c2.tar.xz |
user-manual: fixed typo in example
Signed-off-by: Steffen Prohaska <prohaska@zib.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/user-manual.txt')
-rw-r--r-- | Documentation/user-manual.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 52247aa71..4fabb8e2a 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -872,7 +872,7 @@ Obviously, endless variations are possible; for example, to see all commits reachable from some head but not from any tag in the repository: ------------------------------------------------- -$ gitk ($ git show-ref --heads ) --not $( git show-ref --tags ) +$ gitk $( git show-ref --heads ) --not $( git show-ref --tags ) ------------------------------------------------- (See gitlink:git-rev-parse[1] for explanations of commit-selecting |