Code

Merge branch 'il/rev-glob'
authorJunio C Hamano <gitster@pobox.com>
Tue, 23 Feb 2010 20:05:18 +0000 (12:05 -0800)
committerJunio C Hamano <gitster@pobox.com>
Tue, 23 Feb 2010 20:05:18 +0000 (12:05 -0800)
1  2 
Documentation/git-log.txt
Documentation/git-rev-list.txt
Documentation/git-rev-parse.txt
builtin-rev-parse.c
revision.c

Simple merge
Simple merge
index d375f1af1025698f73900d7eacdf8dc314a87278,61f4835a103f72c15792145cb6bfd06bdd1910eb..c9184fcc767cff509ca185416ec8e02e1c62a2a8
@@@ -103,18 -103,25 +103,28 @@@ OPTION
  --all::
        Show all refs found in `$GIT_DIR/refs`.
  
- --branches::
-       Show branch refs found in `$GIT_DIR/refs/heads`.
- --tags::
-       Show tag refs found in `$GIT_DIR/refs/tags`.
- --remotes::
-       Show tag refs found in `$GIT_DIR/refs/remotes`.
+ --branches[=pattern]::
+ --tags[=pattern]::
+ --remotes[=pattern]::
+       Show all branches, tags, or remote-tracking branches,
+       respectively (i.e., refs found in `$GIT_DIR/refs/heads`,
+       `$GIT_DIR/refs/tags`, or `$GIT_DIR/refs/remotes`,
+       respectively).
+ +
+ If a `pattern` is given, only refs matching the given shell glob are
+ shown.  If the pattern does not contain a globbing character (`?`,
+ `\*`, or `[`), it is turned into a prefix match by appending `/\*`.
+ --glob=pattern::
+       Show all refs matching the shell glob pattern `pattern`. If
+       the pattern does not start with `refs/`, this is automatically
+       prepended.  If the pattern does not contain a globbing
+       character (`?`, `\*`, or `[`), it is turned into a prefix
+       match by appending `/\*`.
  
 +--show-toplevel::
 +      Show the absolute path of the top-level directory.
 +
  --show-prefix::
        When the command is invoked from a subdirectory, show the
        path of the current directory relative to the top-level
Simple merge
diff --cc revision.c
Simple merge