diff options
author | Julian Phillips <julian@quantumfyre.co.uk> | 2007-03-03 00:31:17 +0000 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-02 16:39:18 -0800 |
commit | 5e00f6faf47b4e456080c792d148bd490efa94c3 (patch) | |
tree | 1e0d3b8fb2e8605eefbc484ae4951d0e780cbd7f /Documentation/git-branch.txt | |
parent | git-branch: improve abbreviation of sha1s in verbose mode (diff) | |
download | tgif-5e00f6faf47b4e456080c792d148bd490efa94c3.tar.xz |
git-branch: document new --no-abbrev option
Add the new --no-abbrev option to the man page for the git-branch command.
Signed-off-by: Julian Phillips <julian@quantumfyre.co.uk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-branch.txt')
-rw-r--r-- | Documentation/git-branch.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-branch.txt b/Documentation/git-branch.txt index aa1fdd402a..3ea3b80635 100644 --- a/Documentation/git-branch.txt +++ b/Documentation/git-branch.txt @@ -8,7 +8,8 @@ git-branch - List, create, or delete branches SYNOPSIS -------- [verse] -'git-branch' [--color | --no-color] [-r | -a] [-v [--abbrev=<length>]] +'git-branch' [--color | --no-color] [-r | -a] + [-v [--abbrev=<length> | --no-abbrev]] 'git-branch' [-l] [-f] <branchname> [<start-point>] 'git-branch' (-m | -M) [<oldbranch>] <newbranch> 'git-branch' (-d | -D) [-r] <branchname>... @@ -80,6 +81,9 @@ OPTIONS Alter minimum display length for sha1 in output listing, default value is 7. +--no-abbrev:: + Display the full sha1s in output listing rather than abbreviating them. + <branchname>:: The name of the branch to create or delete. The new branch name must pass all checks defined by |