diff options
author | Sean Estabrooks <seanlkml@sympatico.ca> | 2006-04-28 09:15:04 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-28 14:31:18 -0700 |
commit | 2eaf273d518717c84d748051e05210656f7b7e88 (patch) | |
tree | f4e87b4d16256bba3c49444e1277c40d80f8dbd2 /git-branch.sh | |
parent | fe77bb1a02d5b8dd3915cd27a83b660debaecda4 (diff) | |
download | git-2eaf273d518717c84d748051e05210656f7b7e88.tar.gz git-2eaf273d518717c84d748051e05210656f7b7e88.tar.xz |
Update the git-branch man page to include the "-r" option,
and fix up asciidoc "callouts"
Signed-off-by: Sean Estabrooks <seanlkml@sympatico.ca>
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 663a3a370..ebcc8989d 100755 --- a/git-branch.sh +++ b/git-branch.sh @@ -1,6 +1,6 @@ #!/bin/sh -USAGE='[(-d | -D) <branchname>] | [[-f] <branchname> [<start-point>]]' +USAGE='[(-d | -D) <branchname>] | [[-f] <branchname> [<start-point>]] | -r' 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>.' |