Autogenerated man pages for v1.5.0.1-94-gef1a5
authorJunio C Hamano <junio@hera.kernel.org>
Fri, 23 Feb 2007 07:21:31 +0000 (07:21 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Fri, 23 Feb 2007 07:21:31 +0000 (07:21 +0000)
man1/git-config.1

index 1b046603c5f329d2c3e49373f59f2ff848b51bf0..d072df6944d8db46a1458ad320e097a1b0bf45be 100644 (file)
@@ -2,7 +2,7 @@
 .\" 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" "02/21/2007" "" ""
+.TH "GIT\-CONFIG" "1" "02/23/2007" "" ""
 .\" disable hyphenation
 .nh
 .\" disable justification (adjust text to left margin only)
@@ -259,6 +259,11 @@ The working copy files are assumed to stay unchanged until you mark them otherwi
 core.preferSymlinkRefs
 Instead of the default "symref" format for HEAD and other symbolic reference files, use symbolic links. This is sometimes needed to work with old scripts that expect HEAD to be a symbolic link.
 .TP
+core.bare
+If true this repository is assumed to be \fIbare\fR and has no working directory associated with it. If this is the case a number of commands that require a working directory will be disabled, such as \fBgit\-add\fR(1) or \fBgit\-merge\fR(1).
+
+This setting is automatically guessed by \fBgit\-clone\fR(1) or \fBgit\-init\fR(1) when the repository was created. By default a repository that ends in "/.git" is assumed to be not bare (bare = false), while all other repositories are assumed to be bare (bare = true).
+.TP
 core.logAllRefUpdates
 Updates to a ref <ref> is logged to the file "$GIT_DIR/logs/<ref>", by appending the new and old SHA1, the date/time and the reason of the update, but only when the file exists. If this configuration variable is set to true, missing "$GIT_DIR/logs/<ref>" file is automatically created for branch heads.