From: Junio C Hamano Date: Sun, 30 Sep 2007 00:51:56 +0000 (+0000) Subject: Autogenerated manpages for v1.5.3.3-114-g2a85 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=695b5d3c2acbcb96d23b1ea25a702ea96500006e;p=git.git Autogenerated manpages for v1.5.3.3-114-g2a85 --- diff --git a/man1/git-bundle.1 b/man1/git-bundle.1 index c3e021aed..7cac5b89e 100644 --- a/man1/git-bundle.1 +++ b/man1/git-bundle.1 @@ -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\-BUNDLE" "1" "07/19/2007" "Git 1.5.3.rc2.19.gc4fba" "Git Manual" +.TH "GIT\-BUNDLE" "1" "09/30/2007" "Git 1.5.3.3.114.g2a85" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -45,12 +45,26 @@ It is very important that the basis used be held by the destination. It is okay .SH "EXAMPLE" Assume two repositories exist as R1 on machine A, and R2 on machine B. For whatever reason, direct connection between A and B is not allowed, but we can move data from A to B via some mechanism (CD, email, etc). We want to update R2 with developments made on branch master in R1. We set a tag in R1 (lastR2bundle) after the previous such transport, and move it afterwards to help build the bundle. -in R1 on A: $ git\-bundle create mybundle master ^lastR2bundle $ git tag \-f lastR2bundle master +in R1 on A: +.sp +.nf +.ft C +$ git\-bundle create mybundle master ^lastR2bundle +$ git tag \-f lastR2bundle master +.ft +.fi (move mybundle from A to B by some mechanism) -in R2 on B: $ git\-bundle verify mybundle $ git\-fetch mybundle refspec +in R2 on B: +.sp +.nf +.ft C +$ git\-bundle verify mybundle +$ git\-fetch mybundle refspec +.ft +.fi where refspec is refInBundle:localRef Also, with something like this in your config: @@ -60,9 +74,15 @@ url = /home/me/tmp/file.bdl fetch = refs/heads/*:refs/remotes/origin/* .fi You can first sneakernet the bundle file to ~/tmp/file.bdl and then these commands: +.sp +.nf +.ft C +$ git ls\-remote bundle +$ git fetch bundle +$ git pull bundle +.ft -$ git ls\-remote bundle $ git fetch bundle $ git pull bundle - +.fi would treat it as if it is talking with a remote side over the network. .SH "AUTHOR" Written by Mark Levedahl diff --git a/man1/git-merge.1 b/man1/git-merge.1 index afad35fc2..96a6d577a 100644 --- a/man1/git-merge.1 +++ b/man1/git-merge.1 @@ -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\-MERGE" "1" "08/02/2007" "Git 1.5.3.rc3.120.g68d422" "Git Manual" +.TH "GIT\-MERGE" "1" "09/30/2007" "Git 1.5.3.3.114.g2a85" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -63,7 +63,7 @@ merge.summary Whether to include summaries of merged commits in newly created merge commit. False by default. .TP merge.verbosity -Controls the amount of output shown by the recursive merge strategy. Level 0 outputs nothing except a final error message if conflicts were detected. Level 1 outputs only conflicts, 2 outputs conflicts and file changes. Level 5 and above outputs debugging information. The default is level 2. Can be overriden by \fIGIT_MERGE_VERBOSITY\fR environment variable. +Controls the amount of output shown by the recursive merge strategy. Level 0 outputs nothing except a final error message if conflicts were detected. Level 1 outputs only conflicts, 2 outputs conflicts and file changes. Level 5 and above outputs debugging information. The default is level 2. Can be overridden by \fIGIT_MERGE_VERBOSITY\fR environment variable. .SH "HOW MERGE WORKS" A merge is always between the current HEAD and one or more remote branch heads, and the index file must exactly match the tree of HEAD commit (i.e. the contents of the last commit) when it happens. In other words, git\-diff \-\-cached HEAD must report no changes. .sp diff --git a/man1/git-remote.1 b/man1/git-remote.1 index 542227837..79c9e05d6 100644 --- a/man1/git-remote.1 +++ b/man1/git-remote.1 @@ -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\-REMOTE" "1" "09/15/2007" "Git 1.5.3.1.91.gd3392" "Git Manual" +.TH "GIT\-REMOTE" "1" "09/30/2007" "Git 1.5.3.3.114.g2a85" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -14,6 +14,7 @@ git\-remote \- manage set of tracked repositories .nf \fIgit\-remote\fR \fIgit\-remote\fR add [\-t ] [\-m ] [\-f] [\-\-mirror] +\fIgit\-remote\fR rm \fIgit\-remote\fR show \fIgit\-remote\fR prune \fIgit\-remote\fR update [group] @@ -34,6 +35,9 @@ With \-m option, $GIT_DIR/remotes//HEAD is set up to point at rem In mirror mode, enabled with \-\-mirror, the refs will not be stored in the \fIrefs/remotes/\fR namespace, but in \fIrefs/heads/\fR. This option only makes sense in bare repositories. .TP +\fIrm\fR +Remove the remote named . All remote tracking branches and configuration settings for the remote are removed. +.TP \fIshow\fR Gives some information about the remote . diff --git a/man1/git-send-email.1 b/man1/git-send-email.1 index e017b352d..480e49a9e 100644 --- a/man1/git-send-email.1 +++ b/man1/git-send-email.1 @@ -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\-SEND\-EMAIL" "1" "09/06/2007" "Git 1.5.3.1.4.gad00" "Git Manual" +.TH "GIT\-SEND\-EMAIL" "1" "09/30/2007" "Git 1.5.3.3.114.g2a85" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -55,6 +55,9 @@ A configuration identity. When given, causes values in the \fIsendemail.