Ignore:
Timestamp:
Jun 23, 2014, 9:45:51 PM (11 years ago)
Author:
dmik
Message:

git: Merge version 2.0.0 from vendor to dmik branch.

Location:
git/branches/dmik
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • git/branches/dmik

  • TabularUnified git/branches/dmik/Documentation/git-rev-parse.txt

    r626 r782  
    1515-----------
    1616
    17 Many git porcelainish commands take mixture of flags
     17Many Git porcelainish commands take mixture of flags
    1818(i.e. parameters that begin with a dash '-') and parameters
    1919meant for the underlying 'git rev-list' command they use internally
     
    2525OPTIONS
    2626-------
     27
     28Operation Modes
     29~~~~~~~~~~~~~~~
     30
     31Each of these options must appear first on the command line.
     32
    2733--parseopt::
    2834        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
     41Options for --parseopt
     42~~~~~~~~~~~~~~~~~~~~~~
    2943
    3044--keep-dashdash::
     
    3751        that take options themselves.
    3852
    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
     57Options for Filtering
     58~~~~~~~~~~~~~~~~~~~~~
    4359
    4460--revs-only::
     
    5672        Do not output flag parameters.
    5773
     74Options for Output
     75~~~~~~~~~~~~~~~~~~
     76
    5877--default <arg>::
    5978        If there is no parameter given by the user, use `<arg>`
    6079        instead.
    6180
     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+
     87This can be used to convert arguments to a command run in a subdirectory
     88so that they can still be used after moving to the top-level of the
     89repository.  For example:
     90+
     91----
     92prefix=$(git rev-parse --show-prefix)
     93cd "$(git rev-parse --show-toplevel)"
     94eval "set -- $(git rev-parse --sq --prefix "$prefix" "$@")"
     95----
     96
    6297--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+
     103If you want to make sure that the output actually names an object in
     104your object database and/or can be used as a specific type of object
     105you require, you can add "^{type}" peeling operator to the parameter.
     106For example, `git rev-parse "$VAR^{commit}"` will make sure `$VAR`
     107names an existing object that is a commit-ish (i.e. a commit, or an
     108annotated tag that points at a commit).  To make sure that `$VAR`
     109names an existing object of any type, `git rev-parse "$VAR^{object}"`
     110can be used.
    65111
    66112-q::
     
    84130        one.
    85131
     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
    86143--symbolic::
    87         Usually the object names are output in SHA1 form (with
     144        Usually the object names are output in SHA-1 form (with
    88145        possible '{caret}' prefix); this option makes them output in a
    89146        form as close to the original input as possible.
     
    97154        refnames (e.g. "refs/heads/master").
    98155
    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.
     156Options for Objects
     157~~~~~~~~~~~~~~~~~~~
    103158
    104159--all::
     
    114169If a `pattern` is given, only refs matching the given shell glob are
    115170shown.  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 `/*`.
    118172
    119173--glob=pattern::
     
    121175        the pattern does not start with `refs/`, this is automatically
    122176        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+
     188The patterns given should not begin with `refs/heads`, `refs/tags`, or
     189`refs/remotes` when applied to `--branches`, `--tags`, or `--remotes`,
     190respectively, and they must begin with `refs/` when applied to `--glob`
     191or `--all`. If a trailing '/{asterisk}' is intended, it must be given
     192explicitly.
     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
     200Options for Files
     201~~~~~~~~~~~~~~~~~
    157202
    158203--local-env-vars::
     
    162207        even if they are set.
    163208
    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+
     214If `$GIT_DIR` is not defined and the current directory
     215is not detected to lie in a Git repository or work tree
     216print 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
     248Other Options
     249~~~~~~~~~~~~~
    169250
    170251--since=datestring::
     
    181262        Flags and parameters to be parsed.
    182263
    183 --resolve-git-dir <path>::
    184         Check if <path> is a valid git-dir or a git-file pointing to a valid
    185         git-dir. If <path> is a valid git-dir the resolved path to git-dir will
    186         be printed.
    187264
    188265include::revisions.txt[]
     
    208285'git rev-parse --parseopt' input format is fully text based. It has two parts,
    209286separated 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.
    211288The lines after the separator describe the options.
    212289
     
    214291
    215292------------
    216 <opt_spec><flags>* SP+ help LF
    217 ------------
    218 
    219 `<opt_spec>`::
     293<opt-spec><flags>*<arg-hint>? SP+ help LF
     294------------
     295
     296`<opt-spec>`::
    220297        its format is the short option character, then the long option name
    221298        separated by a comma. Both parts are not required, though at least one
    222299        is necessary. `h,help`, `dry-run` and `f` are all three correct
    223         `<opt_spec>`.
     300        `<opt-spec>`.
    224301
    225302`<flags>`::
     
    227304        * Use `=` if the option takes an argument.
    228305
    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.
    230309
    231310        * Use `*` to mean that this option should not be listed in the usage
     
    235314        * Use `!` to not make the corresponding negated long option available.
    236315
     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
    237322The remainder of the line, after stripping the spaces, is used
    238323as the help associated to the option.
     
    255340foo       some nifty option --foo
    256341bar=      some cool option --bar with an argument
     342baz=arg   another cool option --baz with a named argument
     343qux?path  qux may take a path argument but has meaning by itself
    257344
    258345  An option group Header
     
    260347
    261348eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)"
     349------------
     350
     351
     352Usage text
     353~~~~~~~~~~
     354
     355When `"$@"` is `-h` or `--help` in the above example, the following
     356usage text would be shown:
     357
     358------------
     359usage: 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
     369An option group Header
     370    -C[...]               option C with an optional argument
    262371------------
    263372
     
    301410+
    302411------------
    303 $ git rev-parse --verify $REV
     412$ git rev-parse --verify $REV^{commit}
    304413------------
    305414+
    306415This will error out if $REV is empty or not a valid revision.
    307416
    308 * Same as above:
     417* Similar to above:
    309418+
    310419------------
Note: See TracChangeset for help on using the changeset viewer.