Changeset 782 for git/branches/dmik/Documentation/git-rev-parse.txt
- Timestamp:
- Jun 23, 2014, 9:45:51 PM (11 years ago)
- Location:
- git/branches/dmik
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
git/branches/dmik ¶
- Property svn:mergeinfo changed
/git/vendor/2.0.0 (added) merged: 777 /git/vendor/current merged: 772,774,776
- Property svn:mergeinfo changed
-
TabularUnified git/branches/dmik/Documentation/git-rev-parse.txt ¶
r626 r782 15 15 ----------- 16 16 17 Many git porcelainish commands take mixture of flags17 Many Git porcelainish commands take mixture of flags 18 18 (i.e. parameters that begin with a dash '-') and parameters 19 19 meant for the underlying 'git rev-list' command they use internally … … 25 25 OPTIONS 26 26 ------- 27 28 Operation Modes 29 ~~~~~~~~~~~~~~~ 30 31 Each of these options must appear first on the command line. 32 27 33 --parseopt:: 28 34 Use 'git rev-parse' in option parsing mode (see PARSEOPT section below). 35 36 --sq-quote:: 37 Use 'git rev-parse' in shell quoting mode (see SQ-QUOTE 38 section below). In contrast to the `--sq` option below, this 39 mode does only quoting. Nothing else is done to command input. 40 41 Options for --parseopt 42 ~~~~~~~~~~~~~~~~~~~~~~ 29 43 30 44 --keep-dashdash:: … … 37 51 that take options themselves. 38 52 39 --sq-quote:: 40 Use 'git rev-parse' in shell quoting mode (see SQ-QUOTE 41 section below). In contrast to the `--sq` option below, this 42 mode does only quoting. Nothing else is done to command input. 53 --stuck-long:: 54 Only meaningful in `--parseopt` mode. Output the options in their 55 long form if available, and with their arguments stuck. 56 57 Options for Filtering 58 ~~~~~~~~~~~~~~~~~~~~~ 43 59 44 60 --revs-only:: … … 56 72 Do not output flag parameters. 57 73 74 Options for Output 75 ~~~~~~~~~~~~~~~~~~ 76 58 77 --default <arg>:: 59 78 If there is no parameter given by the user, use `<arg>` 60 79 instead. 61 80 81 --prefix <arg>:: 82 Behave as if 'git rev-parse' was invoked from the `<arg>` 83 subdirectory of the working tree. Any relative filenames are 84 resolved as if they are prefixed by `<arg>` and will be printed 85 in that form. 86 + 87 This can be used to convert arguments to a command run in a subdirectory 88 so that they can still be used after moving to the top-level of the 89 repository. For example: 90 + 91 ---- 92 prefix=$(git rev-parse --show-prefix) 93 cd "$(git rev-parse --show-toplevel)" 94 eval "set -- $(git rev-parse --sq --prefix "$prefix" "$@")" 95 ---- 96 62 97 --verify:: 63 The parameter given must be usable as a single, valid 64 object name. Otherwise barf and abort. 98 Verify that exactly one parameter is provided, and that it 99 can be turned into a raw 20-byte SHA-1 that can be used to 100 access the object database. If so, emit it to the standard 101 output; otherwise, error out. 102 + 103 If you want to make sure that the output actually names an object in 104 your object database and/or can be used as a specific type of object 105 you require, you can add "^{type}" peeling operator to the parameter. 106 For example, `git rev-parse "$VAR^{commit}"` will make sure `$VAR` 107 names an existing object that is a commit-ish (i.e. a commit, or an 108 annotated tag that points at a commit). To make sure that `$VAR` 109 names an existing object of any type, `git rev-parse "$VAR^{object}"` 110 can be used. 65 111 66 112 -q:: … … 84 130 one. 85 131 132 --abbrev-ref[=(strict|loose)]:: 133 A non-ambiguous short name of the objects name. 134 The option core.warnAmbiguousRefs is used to select the strict 135 abbreviation mode. 136 137 --short:: 138 --short=number:: 139 Instead of outputting the full SHA-1 values of object names try to 140 abbreviate them to a shorter unique name. When no length is specified 141 7 is used. The minimum length is 4. 142 86 143 --symbolic:: 87 Usually the object names are output in SHA 1 form (with144 Usually the object names are output in SHA-1 form (with 88 145 possible '{caret}' prefix); this option makes them output in a 89 146 form as close to the original input as possible. … … 97 154 refnames (e.g. "refs/heads/master"). 98 155 99 --abbrev-ref[=(strict|loose)]:: 100 A non-ambiguous short name of the objects name. 101 The option core.warnAmbiguousRefs is used to select the strict 102 abbreviation mode. 156 Options for Objects 157 ~~~~~~~~~~~~~~~~~~~ 103 158 104 159 --all:: … … 114 169 If a `pattern` is given, only refs matching the given shell glob are 115 170 shown. If the pattern does not contain a globbing character (`?`, 116 `{asterisk}`, or `[`), it is turned into a prefix match by 117 appending `/{asterisk}`. 171 `*`, or `[`), it is turned into a prefix match by appending `/*`. 118 172 119 173 --glob=pattern:: … … 121 175 the pattern does not start with `refs/`, this is automatically 122 176 prepended. If the pattern does not contain a globbing 123 character (`?`, `{asterisk}`, or `[`), it is turned into a prefix 124 match by appending `/{asterisk}`. 125 126 --show-toplevel:: 127 Show the absolute path of the top-level directory. 128 129 --show-prefix:: 130 When the command is invoked from a subdirectory, show the 131 path of the current directory relative to the top-level 132 directory. 133 134 --show-cdup:: 135 When the command is invoked from a subdirectory, show the 136 path of the top-level directory relative to the current 137 directory (typically a sequence of "../", or an empty string). 138 139 --git-dir:: 140 Show `$GIT_DIR` if defined. Otherwise show the path to 141 the .git directory, relative to the current directory. 142 + 143 If `$GIT_DIR` is not defined and the current directory 144 is not detected to lie in a git repository or work tree 145 print a message to stderr and exit with nonzero status. 146 147 --is-inside-git-dir:: 148 When the current working directory is below the repository 149 directory print "true", otherwise "false". 150 151 --is-inside-work-tree:: 152 When the current working directory is inside the work tree of the 153 repository print "true", otherwise "false". 154 155 --is-bare-repository:: 156 When the repository is bare print "true", otherwise "false". 177 character (`?`, `*`, or `[`), it is turned into a prefix 178 match by appending `/*`. 179 180 --exclude=<glob-pattern>:: 181 Do not include refs matching '<glob-pattern>' that the next `--all`, 182 `--branches`, `--tags`, `--remotes`, or `--glob` would otherwise 183 consider. Repetitions of this option accumulate exclusion patterns 184 up to the next `--all`, `--branches`, `--tags`, `--remotes`, or 185 `--glob` option (other options or arguments do not clear 186 accumlated patterns). 187 + 188 The patterns given should not begin with `refs/heads`, `refs/tags`, or 189 `refs/remotes` when applied to `--branches`, `--tags`, or `--remotes`, 190 respectively, and they must begin with `refs/` when applied to `--glob` 191 or `--all`. If a trailing '/{asterisk}' is intended, it must be given 192 explicitly. 193 194 --disambiguate=<prefix>:: 195 Show every object whose name begins with the given prefix. 196 The <prefix> must be at least 4 hexadecimal digits long to 197 avoid listing each and every object in the repository by 198 mistake. 199 200 Options for Files 201 ~~~~~~~~~~~~~~~~~ 157 202 158 203 --local-env-vars:: … … 162 207 even if they are set. 163 208 164 --short:: 165 --short=number:: 166 Instead of outputting the full SHA1 values of object names try to 167 abbreviate them to a shorter unique name. When no length is specified 168 7 is used. The minimum length is 4. 209 --git-dir:: 210 Show `$GIT_DIR` if defined. Otherwise show the path to 211 the .git directory. The path shown, when relative, is 212 relative to the current working directory. 213 + 214 If `$GIT_DIR` is not defined and the current directory 215 is not detected to lie in a Git repository or work tree 216 print a message to stderr and exit with nonzero status. 217 218 --is-inside-git-dir:: 219 When the current working directory is below the repository 220 directory print "true", otherwise "false". 221 222 --is-inside-work-tree:: 223 When the current working directory is inside the work tree of the 224 repository print "true", otherwise "false". 225 226 --is-bare-repository:: 227 When the repository is bare print "true", otherwise "false". 228 229 --resolve-git-dir <path>:: 230 Check if <path> is a valid repository or a gitfile that 231 points at a valid repository, and print the location of the 232 repository. If <path> is a gitfile then the resolved path 233 to the real repository is printed. 234 235 --show-cdup:: 236 When the command is invoked from a subdirectory, show the 237 path of the top-level directory relative to the current 238 directory (typically a sequence of "../", or an empty string). 239 240 --show-prefix:: 241 When the command is invoked from a subdirectory, show the 242 path of the current directory relative to the top-level 243 directory. 244 245 --show-toplevel:: 246 Show the absolute path of the top-level directory. 247 248 Other Options 249 ~~~~~~~~~~~~~ 169 250 170 251 --since=datestring:: … … 181 262 Flags and parameters to be parsed. 182 263 183 --resolve-git-dir <path>::184 Check if <path> is a valid git-dir or a git-file pointing to a valid185 git-dir. If <path> is a valid git-dir the resolved path to git-dir will186 be printed.187 264 188 265 include::revisions.txt[] … … 208 285 'git rev-parse --parseopt' input format is fully text based. It has two parts, 209 286 separated by a line that contains only `--`. The lines before the separator 210 (should be more than one) are used for the usage.287 (should be one or more) are used for the usage. 211 288 The lines after the separator describe the options. 212 289 … … 214 291 215 292 ------------ 216 <opt _spec><flags>*SP+ help LF217 ------------ 218 219 `<opt _spec>`::293 <opt-spec><flags>*<arg-hint>? SP+ help LF 294 ------------ 295 296 `<opt-spec>`:: 220 297 its format is the short option character, then the long option name 221 298 separated by a comma. Both parts are not required, though at least one 222 299 is necessary. `h,help`, `dry-run` and `f` are all three correct 223 `<opt _spec>`.300 `<opt-spec>`. 224 301 225 302 `<flags>`:: … … 227 304 * Use `=` if the option takes an argument. 228 305 229 * Use `?` to mean that the option is optional (though its use is discouraged). 306 * Use `?` to mean that the option takes an optional argument. You 307 probably want to use the `--stuck-long` mode to be able to 308 unambiguously parse the optional argument. 230 309 231 310 * Use `*` to mean that this option should not be listed in the usage … … 235 314 * Use `!` to not make the corresponding negated long option available. 236 315 316 `<arg-hint>`:: 317 `<arg-hint>`, if specified, is used as a name of the argument in the 318 help output, for options that take arguments. `<arg-hint>` is 319 terminated by the first whitespace. It is customary to use a 320 dash to separate words in a multi-word argument hint. 321 237 322 The remainder of the line, after stripping the spaces, is used 238 323 as the help associated to the option. … … 255 340 foo some nifty option --foo 256 341 bar= some cool option --bar with an argument 342 baz=arg another cool option --baz with a named argument 343 qux?path qux may take a path argument but has meaning by itself 257 344 258 345 An option group Header … … 260 347 261 348 eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)" 349 ------------ 350 351 352 Usage text 353 ~~~~~~~~~~ 354 355 When `"$@"` is `-h` or `--help` in the above example, the following 356 usage text would be shown: 357 358 ------------ 359 usage: some-command [options] <args>... 360 361 some-command does foo and bar! 362 363 -h, --help show the help 364 --foo some nifty option --foo 365 --bar ... some cool option --bar with an argument 366 --baz <arg> another cool option --baz with a named argument 367 --qux[=<path>] qux may take a path argument but has meaning by itself 368 369 An option group Header 370 -C[...] option C with an optional argument 262 371 ------------ 263 372 … … 301 410 + 302 411 ------------ 303 $ git rev-parse --verify $REV 412 $ git rev-parse --verify $REV^{commit} 304 413 ------------ 305 414 + 306 415 This will error out if $REV is empty or not a valid revision. 307 416 308 * S ame asabove:417 * Similar to above: 309 418 + 310 419 ------------
Note:
See TracChangeset
for help on using the changeset viewer.