Autogenerated man pages for v1.3.3-g63df
authorJunio C Hamano <junio@hera.kernel.org>
Wed, 17 May 2006 10:34:24 +0000 (10:34 +0000)
committerJunio C Hamano <junio@hera.kernel.org>
Wed, 17 May 2006 10:34:24 +0000 (10:34 +0000)
man1/git-diff-files.1
man1/git-diff-index.1
man1/git-diff-stages.1
man1/git-diff-tree.1
man1/git-merge-base.1
man1/git-rebase.1
man1/git-rev-parse.1

index c7784aa..3b8b20a 100755 (executable)
@@ -49,6 +49,10 @@ Generate patch but keep also the default raw diff output\&.
 Generate a diffstat instead of a patch\&.
 
 .TP
+\-\-summary
+Output a condensed summary of extended header information such as creations, renames and mode changes\&.
+
+.TP
 \-\-patch\-with\-stat
 Generate patch and prepend its diffstat\&.
 
index 1c192b8..786b5c6 100755 (executable)
@@ -49,6 +49,10 @@ Generate patch but keep also the default raw diff output\&.
 Generate a diffstat instead of a patch\&.
 
 .TP
+\-\-summary
+Output a condensed summary of extended header information such as creations, renames and mode changes\&.
+
+.TP
 \-\-patch\-with\-stat
 Generate patch and prepend its diffstat\&.
 
index 96682df..2b7706a 100755 (executable)
@@ -49,6 +49,10 @@ Generate patch but keep also the default raw diff output\&.
 Generate a diffstat instead of a patch\&.
 
 .TP
+\-\-summary
+Output a condensed summary of extended header information such as creations, renames and mode changes\&.
+
+.TP
 \-\-patch\-with\-stat
 Generate patch and prepend its diffstat\&.
 
index 5b25d98..6357b8e 100755 (executable)
@@ -58,6 +58,10 @@ Generate patch but keep also the default raw diff output\&.
 Generate a diffstat instead of a patch\&.
 
 .TP
+\-\-summary
+Output a condensed summary of extended header information such as creations, renames and mode changes\&.
+
+.TP
 \-\-patch\-with\-stat
 Generate patch and prepend its diffstat\&.
 
index 6d466c5..e7a6a65 100755 (executable)
@@ -23,16 +23,25 @@ git-merge-base \- Finds as good a common ancestor as possible for a merge
 .SH "SYNOPSIS"
 
 
-git\-merge\-base <commit> <commit>
+\fIgit\-merge\-base\fR [\-\-all] <commit> <commit>
 
 .SH "DESCRIPTION"
 
 
-"git\-merge\-base" finds as good a common ancestor as possible\&. Given a selection of equally good common ancestors it should not be relied on to decide in any particular way\&.
+"git\-merge\-base" finds as good a common ancestor as possible between the two commits\&. That is, given two commits A and B \fIgit\-merge\-base A B\fR will output a commit which is reachable from both A and B through the parent relationship\&.
+
+
+Given a selection of equally good common ancestors it should not be relied on to decide in any particular way\&.
 
 
 The "git\-merge\-base" algorithm is still in flux \- use the source...
 
+.SH "OPTIONS"
+
+.TP
+\-\-all
+Output all common ancestors for the two commits instead of just one\&.
+
 .SH "AUTHOR"
 
 
index dca31e1..56792f2 100755 (executable)
@@ -26,10 +26,7 @@ git-rebase \- Rebase local commits to a new head
 \fIgit\-rebase\fR [\-\-onto <newbase>] <upstream> [<branch>]
 
 
-\fIgit\-rebase\fR \-\-continue
-
-
-\fIgit\-rebase\fR \-\-abort
+\fIgit\-rebase\fR \-\-continue | \-\-skip | \-\-abort
 
 .SH "DESCRIPTION"
 
@@ -37,7 +34,7 @@ git-rebase \- Rebase local commits to a new head
 git\-rebase replaces <branch> with a new branch of the same name\&. When the \-\-onto option is provided the new branch starts out with a HEAD equal to <newbase>, otherwise it is equal to <upstream>\&. It then attempts to create a new commit for each commit from the original <branch> that does not exist in the <upstream> branch\&.
 
 
-It is possible that a merge failure will prevent this process from being completely automatic\&. You will have to resolve any such merge failure and run git rebase \-\-continue\&. If you can not resolve the merge failure, running git rebase \-\-abort will restore the original <branch> and remove the working files found in the \&.dotest directory\&.
+It is possible that a merge failure will prevent this process from being completely automatic\&. You will have to resolve any such merge failure and run git rebase \-\-continue\&. Another option is to bypass the commit that caused the merge failure with git rebase \-\-skip\&. To restore the original <branch> and remove the \&.dotest working files, use the command git rebase \-\-abort instead\&.
 
 
 Note that if <branch> is not specified on the command line, the currently checked out branch is used\&.
index a0d6896..cd19ed8 100755 (executable)
@@ -73,6 +73,18 @@ Usually the object names are output in SHA1 form (with possible \fI^\fR prefix);
 Show all refs found in $GIT_DIR/refs\&.
 
 .TP
+\-\-branches
+Show branch refs found in $GIT_DIR/refs/heads\&.
+
+.TP
+\-\-tags
+Show tag refs found in $GIT_DIR/refs/tags\&.
+
+.TP
+\-\-remotes
+Show tag refs found in $GIT_DIR/refs/remotes\&.
+
+.TP
 \-\-show\-prefix
 When the command is invoked from a subdirectory, show the path of the current directory relative to the top\-level directory\&.