summaryrefslogtreecommitdiffstats
path: root/rev-list-options.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@kernel.org>2010-01-23 03:02:50 +0000
committerJunio C Hamano <junio@kernel.org>2010-01-23 03:02:50 +0000
commit57827fb28944ab9eee73efc93f04fb6dfc6e36a8 (patch)
tree935f9e461c67a51943bca7879ec02af645e62d67 /rev-list-options.txt
parent364b6a4e15285cad6c674f515c0aa3538cfed028 (diff)
downloadgit-htmldocs-57827fb28944ab9eee73efc93f04fb6dfc6e36a8.tar.gz
Autogenerated HTML docs for v1.6.6.1-436-gaba7d
Diffstat (limited to 'rev-list-options.txt')
-rw-r--r--rev-list-options.txt25
1 files changed, 19 insertions, 6 deletions
diff --git a/rev-list-options.txt b/rev-list-options.txt
index 1f57aed33..3ef71179d 100644
--- a/rev-list-options.txt
+++ b/rev-list-options.txt
@@ -228,20 +228,33 @@ endif::git-rev-list[]
Pretend as if all the refs in `$GIT_DIR/refs/` are listed on the
command line as '<commit>'.
---branches::
+--branches[=pattern]::
Pretend as if all the refs in `$GIT_DIR/refs/heads` are listed
- on the command line as '<commit>'.
+ on the command line as '<commit>'. If `pattern` is given, limit
+ branches to ones matching given shell glob. If pattern lacks '?',
+ '*', or '[', '/*' at the end is impiled.
---tags::
+--tags[=pattern]::
Pretend as if all the refs in `$GIT_DIR/refs/tags` are listed
- on the command line as '<commit>'.
+ on the command line as '<commit>'. If `pattern` is given, limit
+ tags to ones matching given shell glob. If pattern lacks '?', '*',
+ or '[', '/*' at the end is impiled.
---remotes::
+--remotes[=pattern]::
Pretend as if all the refs in `$GIT_DIR/refs/remotes` are listed
- on the command line as '<commit>'.
+ on the command line as '<commit>'. If `pattern`is given, limit
+ remote tracking branches to ones matching given shell glob.
+ If pattern lacks '?', '*', or '[', '/*' at the end is impiled.
+
+--glob=glob-pattern::
+ Pretend as if all the refs matching shell glob `glob-pattern`
+ are listed on the command line as '<commit>'. Leading 'refs/',
+ is automatically prepended if missing. If pattern lacks '?', '*',
+ or '[', '/*' at the end is impiled.
+
ifndef::git-rev-list[]
--bisect::