.\" 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/20/2007" "" ""
+.TH "GIT\-CONFIG" "1" "02/21/2007" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
pull.twohead
The default merge strategy to use when pulling a single branch.
.TP
-remote.fetch
-The list of remotes which are fetched by "git remote update". See \fBgit\-remote\fR(1).
-.TP
remote.<name>.url
The URL of a remote repository. See \fBgit\-fetch\fR(1) or \fBgit\-push\fR(1).
.TP
remote.<name>.push
The default set of "refspec" for \fBgit\-push\fR(1). See \fBgit\-push\fR(1).
.TP
+remote.<name>.skipDefaultUpdate
+If true, this remote will be skipped by default when updating using the remote subcommand of \fBgit\-remote\fR(1).
+.TP
remote.<name>.receivepack
The default program to execute on the remote side when pushing. See option \-\-exec of \fBgit\-push\fR(1).
.TP
remote.<name>.uploadpack
The default program to execute on the remote side when fetching. See option \-\-exec of \fBgit\-fetch\-pack\fR(1).
.TP
+remotes.<group>
+The list of remotes which are fetched by "git remote update <group>". See \fBgit\-remote\fR(1).
+.TP
repack.usedeltabaseoffset
Allow \fBgit\-repack\fR(1) to create packs that uses delta\-base offset. 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\-CVSEXPORTCOMMIT" "1" "02/06/2007" "" ""
+.TH "GIT\-CVSEXPORTCOMMIT" "1" "02/21/2007" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.SH "NAME"
git\-cvsexportcommit \- Export a single commit to a CVS checkout
.SH "SYNOPSIS"
-\fIgit\-cvsexportcommit\fR [\-h] [\-v] [\-c] [\-P] [\-p] [\-a] [\-f] [\-m msgprefix] [PARENTCOMMIT] COMMITID
+\fIgit\-cvsexportcommit\fR [\-h] [\-v] [\-c] [\-P] [\-p] [\-a] [\-d cvsroot] [\-f] [\-m msgprefix] [PARENTCOMMIT] COMMITID
.SH "DESCRIPTION"
Exports a commit from GIT to a CVS checkout, making it easier to merge patches from a git repository into a CVS repository.
\-a
Add authorship information. Adds Author line, and Committer (if different from Author) to the message.
.TP
+\-d
+Set an alternative CVSROOT to use. This corresponds to the CVS \-d parameter. Usually users will not want to set this, except if using CVS in an asymmetric fashion.
+.TP
\-f
Force the merge even if the files are not up to date.
.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\-REMOTE" "1" "02/20/2007" "" ""
+.TH "GIT\-REMOTE" "1" "02/21/2007" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
\fIgit\-remote\fR add <name> <url>
\fIgit\-remote\fR show <name>
\fIgit\-remote\fR prune <name>
-\fIgit\-remote\fR update
+\fIgit\-remote\fR update [group]
.fi
.SH "DESCRIPTION"
Manage the set of repositories ("remotes") whose branches you track.
Deletes all stale tracking branches under <name>. These stale branches have already been removed from the remote repository referenced by <name>, but are still locally available in "remotes/<name>".
.TP
\fIupdate\fR
-Fetch updates for the remotes in the repository. By default all remotes are updated, but this can be configured via the configuration parameter \fIremote.fetch\fR. (See \fBgit\-config\fR(1)).
+Fetch updates for a named set of remotes in the repository as defined by remotes.<group>. If a named group is not specified on the command line, the configuration parameter remotes.default will get used; if remotes.default is not defined, all remotes which do not the configuration parameter remote.<name>.skipDefaultUpdate set to true will be updated. (See \fBgit\-config\fR(1)).
.SH "DISCUSSION"
The remote configuration is achieved using the remote.origin.url and remote.origin.fetch configuration variables. (See \fBgit\-config\fR(1)).
.SH "EXAMPLES"