summaryrefslogtreecommitdiff
path: root/git-branch.sh
diff options
context:
space:
mode:
authorSean Estabrooks <seanlkml@sympatico.ca>2006-04-28 13:15:04 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-04-28 21:31:18 (GMT)
commit2eaf273d518717c84d748051e05210656f7b7e88 (patch)
treef4e87b4d16256bba3c49444e1277c40d80f8dbd2 /git-branch.sh
parentfe77bb1a02d5b8dd3915cd27a83b660debaecda4 (diff)
downloadgit-2eaf273d518717c84d748051e05210656f7b7e88.zip
git-2eaf273d518717c84d748051e05210656f7b7e88.tar.gz
git-2eaf273d518717c84d748051e05210656f7b7e88.tar.bz2
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-xgit-branch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-branch.sh b/git-branch.sh
index 663a3a3..ebcc898 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>.'