GIT 0.99.6
[git.git] / Documentation / git-checkout-script.txt
blob52831abd191a9a1cac47afc0ed64a4c368547126
1 git-checkout-script(1)
2 ======================
4 NAME
5 ----
6 git-checkout-script - Checkout and switch to a branch.
8 SYNOPSIS
9 --------
10 'git-checkout-script' [-f] [-b <new_branch>] [<branch>]
12 DESCRIPTION
13 -----------
14 Updates the index and working tree to reflect the specified branch,
15 <branch>. Updates HEAD to be <branch> or, if specified, <new_branch>.
17 OPTIONS
18 -------
19 -f::
20         Force an re-read of everything.
22 -b::
23         Create a new branch and start it at <branch>.
25 <new_branch>::
26         Name for the new branch.
28 <branch>::
29         Branch to checkout; may be any object ID that resolves to a
30         commit. Defaults to HEAD.
32 Author
33 ------
34 Written by Linus Torvalds <torvalds@osdl.org>
36 Documentation
37 --------------
38 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
40 GIT
41 ---
42 Part of the link:git.html[git] suite