aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-show-branch.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-01-11 00:16:42 -0800
committerJunio C Hamano <junkio@cox.net>2006-01-15 00:04:23 -0800
commit1aa68d67358be1ee20da57b0c3bd1f9863fe41a4 (patch)
tree0eec4370d640c490c8628f6dc8e4d19e4400c5e4 /Documentation/git-show-branch.txt
parentebedc3195258a6382f58c8c6b54b21db922440af (diff)
downloadgit-1aa68d67358be1ee20da57b0c3bd1f9863fe41a4.tar.gz
show-branch: --current includes the current branch.
With this, the command includes the current branch to the list of revs to be shown when it is not given on the command line. This is handy to use in the configuration file like this: [showbranch] default = --current default = heads/* ; primary branches, not topics under ; subdirectories Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-show-branch.txt')
-rw-r--r--Documentation/git-show-branch.txt13
1 files changed, 11 insertions, 2 deletions
diff --git a/Documentation/git-show-branch.txt b/Documentation/git-show-branch.txt
index 4bef4767e0..7b1a9c9875 100644
--- a/Documentation/git-show-branch.txt
+++ b/Documentation/git-show-branch.txt
@@ -7,7 +7,10 @@ git-show-branch - Show branches and their commits.
SYNOPSIS
--------
-'git-show-branch [--all] [--heads] [--tags] [--topo-order] [--more=<n> | --list | --independent | --merge-base] [--no-name | --sha1-name] [<rev> | <glob>]...'
+[verse]
+git-show-branch [--all] [--heads] [--tags] [--topo-order] [--current]
+ [--more=<n> | --list | --independent | --merge-base]
+ [--no-name | --sha1-name] [<rev> | <glob>]...
DESCRIPTION
-----------
@@ -38,6 +41,11 @@ OPTIONS
Show all refs under $GIT_DIR/refs, $GIT_DIR/refs/heads,
and $GIT_DIR/refs/tags, respectively.
+--current::
+ With this option, the command includes the current
+ branch to the list of revs to be shown when it is not
+ given on the command line.
+
--topo-order::
By default, the branches and their commits are shown in
reverse chronological order. This option makes them
@@ -134,7 +142,8 @@ it, having the following in the configuration file may help:
------------
With this,`git show-branch` without extra parameters would show
-only the primary branches.
+only the primary branches. In addition, if you happen to be on
+your topic branch, it is shown as well.