diff options
author | Mark Burton <markb@ordern.com> | 2008-11-17 21:03:59 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-11-18 16:09:08 -0800 |
commit | c2e6385da53bd3a517332ba2c8d2bd09bdb05396 (patch) | |
tree | b8232258c9b93e3341a5a57d41139bf13e62e39a | |
parent | builtin-branch: use strbuf in rename_branch() (diff) | |
download | tgif-c2e6385da53bd3a517332ba2c8d2bd09bdb05396.tar.xz |
Documentation: rev-list-options.txt: added --branches, --tags & --remotes.
Added simple descriptions of these options (based on description of --all).
Signed-off-by: Mark Burton <markb@ordern.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/rev-list-options.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/rev-list-options.txt b/Documentation/rev-list-options.txt index 6d7cf6d51f..b9f6e4d1b7 100644 --- a/Documentation/rev-list-options.txt +++ b/Documentation/rev-list-options.txt @@ -222,6 +222,21 @@ endif::git-rev-list[] Pretend as if all the refs in `$GIT_DIR/refs/` are listed on the command line as '<commit>'. +--branches:: + + Pretend as if all the refs in `$GIT_DIR/refs/heads` are listed + on the command line as '<commit>'. + +--tags:: + + Pretend as if all the refs in `$GIT_DIR/refs/tags` are listed + on the command line as '<commit>'. + +--remotes:: + + Pretend as if all the refs in `$GIT_DIR/refs/remotes` are listed + on the command line as '<commit>'. + ifdef::git-rev-list[] --stdin:: |