[PATCH] Docs for git-checkout-script.

Signed-off-by: A Large Angry SCM <gitzilla@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
A Large Angry SCM 2005-09-07 17:17:18 -04:00 committed by Junio C Hamano
parent 5077fa9c1e
commit 0270f7c500
1 changed files with 14 additions and 9 deletions

View File

@ -3,26 +3,31 @@ git-checkout-script(1)


NAME NAME
---- ----
git-checkout-script - Some git command not yet documented. git-checkout-script - Checkout and switch to a branch.



SYNOPSIS SYNOPSIS
-------- --------
'git-checkout-script' [ --option ] <args>... 'git-checkout-script' [-f] [-b <new_branch>] [<branch>]


DESCRIPTION DESCRIPTION
----------- -----------
Does something not yet documented. Updates the index and working tree to reflect the specified branch,

<branch>. Updates HEAD to be <branch> or, if specified, <new_branch>.


OPTIONS OPTIONS
------- -------
--option:: -f::
Some option not yet documented. Force an re-read of everything.


<args>...:: -b::
Some argument not yet documented. Create a new branch and start it at <branch>.


<new_branch>::
Name for the new branch.

<branch>::
Branch to checkout; may be any object ID that resolves to a
commit. Defaults to HEAD.


Author Author
------ ------