diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-07-22 23:02:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-22 16:06:48 -0700 |
commit | 17b83d71d52a5eb6a621be22daa624414d3ee514 (patch) | |
tree | 2d55c178ce0711b08eef3a4e9886606954cfbf27 /Documentation/git-rev-parse.txt | |
parent | 1114fc023772001bb7053789461c69b0c3c994e3 (diff) | |
download | git-17b83d71d52a5eb6a621be22daa624414d3ee514.tar.gz |
typofix: documentation
Signed-off-by: Ondřej Bílka <neleai@seznam.cz>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-rev-parse.txt')
-rw-r--r-- | Documentation/git-rev-parse.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-rev-parse.txt b/Documentation/git-rev-parse.txt index 993903c9f1..2b126c0a77 100644 --- a/Documentation/git-rev-parse.txt +++ b/Documentation/git-rev-parse.txt @@ -83,7 +83,7 @@ eval "set -- $(git rev-parse --sq --prefix "$prefix" "$@")" + If you want to make sure that the output actually names an object in your object database and/or can be used as a specific type of object -you require, you can add "^{type}" peeling operator to the parmeter. +you require, you can add "^{type}" peeling operator to the parameter. For example, `git rev-parse "$VAR^{commit}"` will make sure `$VAR` names an existing object that is a commit-ish (i.e. a commit, or an annotated tag that points at a commit). To make sure that `$VAR` |