From 3c697cadcd28c52f4db66e0c22d88c29658176cb Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 19 Sep 2007 02:28:14 +0000 Subject: [PATCH] Autogenerated manpages for v1.5.3.1-153-g89df5 --- man1/git-push.1 | 6 +++--- man1/git-send-pack.1 | 6 +++--- man1/git-svn.1 | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/man1/git-push.1 b/man1/git-push.1 index 5dbecf86e..4de6619c8 100644 --- a/man1/git-push.1 +++ b/man1/git-push.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\-PUSH" "1" "09/06/2007" "Git 1.5.3.1.19.gb5ef6" "Git Manual" +.TH "GIT\-PUSH" "1" "09/19/2007" "Git 1.5.3.1.153.g89df5" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -31,7 +31,7 @@ The side can be an arbitrary "SHA1 expression" that can be used as an argu The local ref that matches is used to fast forward the remote ref that matches . If the optional plus + is used, the remote ref is updated even if it does not result in a fast forward update. -Note: If no explicit refspec is found, (that is neither on the command line nor in any Push line of the corresponding remotes file\-\-\-see below), then all the refs that exist both on the local side and on the remote side are updated. +Note: If no explicit refspec is found, (that is neither on the command line nor in any Push line of the corresponding remotes file\-\-\-see below), then all the heads that exist both on the local side and on the remote side are updated. tag means the same as refs/tags/:refs/tags/. @@ -40,7 +40,7 @@ A parameter without a colon pushes the from the source repository to Pushing an empty allows you to delete the ref from the remote repository. .TP \-\-all -Instead of naming each ref to push, specifies that all refs be pushed. +Instead of naming each ref to push, specifies that all refs under $GIT_DIR/refs/heads/ be pushed. .TP \-\-tags All refs under $GIT_DIR/refs/tags are pushed, in addition to refspecs explicitly listed on the command line. diff --git a/man1/git-send-pack.1 b/man1/git-send-pack.1 index 7af4ccfd6..6190d3fd8 100644 --- a/man1/git-send-pack.1 +++ b/man1/git-send-pack.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\-PACK" "1" "07/19/2007" "Git 1.5.3.rc2.19.gc4fba" "Git Manual" +.TH "GIT\-SEND\-PACK" "1" "09/19/2007" "Git 1.5.3.1.153.g89df5" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -24,7 +24,7 @@ Path to the \fIgit\-receive\-pack\fR program on the remote end. Sometimes useful Same as \-\-receive\-pack=. .TP \-\-all -Instead of explicitly specifying which refs to update, update all refs that locally exist. +Instead of explicitly specifying which refs to update, update all heads that locally exist. .TP \-\-force Usually, the command refuses to update a remote ref that is not an ancestor of the local ref used to overwrite it. This flag disables the check. What this means is that the remote repository can lose commits; use it with care. @@ -48,7 +48,7 @@ There are three ways to specify which refs to update on the remote end. With \fI\-\-all\fR flag, all refs that exist locally are transferred to the remote side. You cannot specify any \fI\fR if you use this flag. -Without \fI\-\-all\fR and without any \fI\fR, the refs that exist both on the local side and on the remote side are updated. +Without \fI\-\-all\fR and without any \fI\fR, the heads that exist both on the local side and on the remote side are updated. When one or more \fI\fR are specified explicitly, it can be either a single pattern, or a pair of such pattern separated by a colon ":" (this means that a ref name cannot have a colon in it). A single pattern \fI\fR is just a shorthand for \fI:\fR. diff --git a/man1/git-svn.1 b/man1/git-svn.1 index 7a7652194..70ac90041 100644 --- a/man1/git-svn.1 +++ b/man1/git-svn.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\-SVN" "1" "08/29/2007" "Git 1.5.3.rc7" "Git Manual" +.TH "GIT\-SVN" "1" "09/19/2007" "Git 1.5.3.1.153.g89df5" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -290,7 +290,7 @@ Originally, git\-svn recommended that the remotes/git\-svn branch be pulled or m If you use \fIgit\-svn set\-tree A..B\fR to commit several diffs and you do not have the latest remotes/git\-svn merged into my\-branch, you should use \fIgit\-svn rebase\fR to update your work branch instead of \fIgit pull\fR or \fIgit merge\fR. \fIpull/merge\fR can cause non\-linear history to be flattened when committing into SVN, which can lead to merge commits reversing previous commits in SVN. .SH "DESIGN PHILOSOPHY" -Merge tracking in Subversion is lacking and doing branched development with Subversion is cumbersome as a result. git\-svn does not do automated merge/branch tracking by default and leaves it entirely up to the user on the git side. git\-svn does however follow copy history of the directory that it is tracking, however (much like how \fIsvn log\fR works). +Merge tracking in Subversion is lacking and doing branched development with Subversion can be cumbersome as a result. While git\-svn can track copy history (including branches and tags) for repositories adopting a standard layout, it cannot yet represent merge history that happened inside git back upstream to SVN users. Therefore it is advised that users keep history as linear as possible inside git to ease compatibility with SVN (see the CAVEATS section below). .SH "CAVEATS" For the sake of simplicity and interoperating with a less\-capable system (SVN), it is recommended that all git\-svn users clone, fetch and dcommit directly from the SVN server, and avoid all git\-clone/pull/merge/push operations between git repositories and branches. The recommended method of exchanging code between git branches and users is git\-format\-patch and git\-am, or just dcommiting to the SVN repository. -- 2.26.2