.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
.\" Instead of manually editing it, you probably should edit the DocBook XML
.\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-CHECKOUT" "1" "04/22/2007" "Git 1.5.1.2.241.gfdd3e" "Git Manual"
+.TH "GIT\-CHECKOUT" "1" "04/24/2007" "Git 1.5.2.rc0.14.g520d" "Git Manual"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.SH "SYNOPSIS"
.sp
.nf
-\fIgit\-checkout\fR [\-q] [\-f] [\-b [\-\-track | \-\-no\-track] <new_branch> [\-l]] [\-m] [<branch>]
+\fIgit\-checkout\fR [\-q] [\-f] [[\-\-track | \-\-no\-track] \-b <new_branch> [\-l]] [\-m] [<branch>]
\fIgit\-checkout\fR [<tree\-ish>] <paths>\&...
.fi
.SH "DESCRIPTION"
.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
.\" Instead of manually editing it, you probably should edit the DocBook XML
.\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-CLEAN" "1" "04/22/2007" "Git 1.5.1.2.241.gfdd3e" "Git Manual"
+.TH "GIT\-CLEAN" "1" "04/24/2007" "Git 1.5.2.rc0.14.g520d" "Git Manual"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.SH "SYNOPSIS"
.sp
.nf
-\fIgit\-clean\fR [\-d] [\-n] [\-q] [\-x | \-X] [\-\-] <paths>\&...
+\fIgit\-clean\fR [\-d] [\-f] [\-n] [\-q] [\-x | \-X] [\-\-] <paths>\&...
.fi
.SH "DESCRIPTION"
Removes files unknown to git. This allows to clean the working tree from files that are not under version control. If the \fI\-x\fR option is specified, ignored files are also removed, allowing to remove all build products. When optional <paths>\&... arguments are given, the paths affected are further limited to those that match them.
\-d
Remove untracked directories in addition to untracked files.
.TP
+\-f
+If the git configuration specifies clean.forceRequire as true, git\-clean will refuse to run unless given \-f or \-n.
+.TP
\-n
Don't actually remove anything, just show what would be done.
.TP
.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
.\" Instead of manually editing it, you probably should edit the DocBook XML
.\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-CONFIG" "1" "04/22/2007" "Git 1.5.1.2.240.g42c4" "Git Manual"
+.TH "GIT\-CONFIG" "1" "04/24/2007" "Git 1.5.2.rc0.14.g520d" "Git Manual"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
branch.<name>.merge
When in branch <name>, it tells git fetch the default refspec to be marked for merging in FETCH_HEAD. The value has exactly to match a remote part of one of the refspecs which are fetched from the remote given by "branch.<name>.remote". The merge information is used by git pull (which at first calls git fetch) to lookup the default branch for merging. Without this option, git pull defaults to merge the first refspec fetched. Specify multiple values to get an octopus merge. If you wish to setup git pull so that it merges into <name> from another branch in the local repository, you can point branch.<name>.merge to the desired branch, and use the special setting . (a period) for branch.<name>.remote.
.TP
+clean.requireForce
+A boolean to make git\-clean do nothing unless given \-f or \-n. Defaults to false.
+.TP
color.branch
A boolean to enable/disable color in the output of \fBgit\-branch\fR(1). May be set to true (or always), false (or never) or auto, in which case colors are used only when the output is to a terminal. Defaults to false.
.TP
.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
.\" Instead of manually editing it, you probably should edit the DocBook XML
.\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
-.TH "GIT\-RESET" "1" "04/22/2007" "Git 1.5.1.2.241.gfdd3e" "Git Manual"
+.TH "GIT\-RESET" "1" "04/24/2007" "Git 1.5.2.rc0.14.g520d" "Git Manual"
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
\fB2. \fRmake corrections to working tree files.
.br
\fB3. \fR"reset" copies the old head to .git/ORIG_HEAD; redo the commit by starting with its log message. If you do not need to edit the message further, you can give \-C option instead.
+
+See also the \-\-amend option to \fBgit\-commit\fR(1).
.br
.TP
Undo commits permanently