diff options
author | Fredrik Kuivinen <freku045@student.liu.se> | 2006-01-29 15:02:51 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-29 15:00:46 -0800 |
commit | 075dd8ee5417899c9f41b90f0dceecdf85433468 (patch) | |
tree | 2dc2cb7f68a4cc447664e90c494e06b222d9f546 /git-branch.sh | |
parent | 4353f386166d74fd96cb552900fc22f6df211c21 (diff) | |
download | git-075dd8ee5417899c9f41b90f0dceecdf85433468.tar.gz git-075dd8ee5417899c9f41b90f0dceecdf85433468.tar.xz |
git-branch: Documentation fixes
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-branch.sh')
-rwxr-xr-x | git-branch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-branch.sh b/git-branch.sh index b0e54ed2a..6ac961e6d 100755 --- a/git-branch.sh +++ b/git-branch.sh @@ -1,6 +1,6 @@ #!/bin/sh -USAGE='[-d <branch>] | [[-f] <branch> [start-point]]' +USAGE='[(-d | -D) <branchname>] | [[-f] <branchname> [<start-point>]]' LONG_USAGE='If no arguments, show available branches and mark current branch with a star. If one argument, create a new branch <branchname> based off of current HEAD. If two arguments, create a new branch <branchname> based off of <start-point>.' |